| Jiyong Park | a3f8840 | 2017-05-08 13:00:02 +0900 | [diff] [blame] | 1 | // Copyright (C) 2017 The Android Open Source Project | 
|  | 2 | // | 
|  | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 4 | // you may not use this file except in compliance with the License. | 
|  | 5 | // You may obtain a copy of the License at | 
|  | 6 | // | 
|  | 7 | //      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 8 | // | 
|  | 9 | // Unless required by applicable law or agreed to in writing, software | 
|  | 10 | // distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 12 | // See the License for the specific language governing permissions and | 
|  | 13 | // limitations under the License. | 
|  | 14 |  | 
|  | 15 | cc_library_shared { | 
|  | 16 | name: "libgraphicsenv", | 
|  | 17 |  | 
|  | 18 | srcs: [ | 
| Yiwei Zhang | f40fb10 | 2019-02-27 21:05:06 -0800 | [diff] [blame] | 19 | "GpuStatsInfo.cpp", | 
| Jiyong Park | a3f8840 | 2017-05-08 13:00:02 +0900 | [diff] [blame] | 20 | "GraphicsEnv.cpp", | 
| Yiwei Zhang | cb9d4e4 | 2019-02-06 20:22:59 -0800 | [diff] [blame] | 21 | "IGpuService.cpp" | 
| Jiyong Park | a3f8840 | 2017-05-08 13:00:02 +0900 | [diff] [blame] | 22 | ], | 
|  | 23 |  | 
| Chih-Hung Hsieh | 687a0d1 | 2017-10-05 15:20:11 -0700 | [diff] [blame] | 24 | cflags: ["-Wall", "-Werror"], | 
|  | 25 |  | 
| Jiyong Park | a3f8840 | 2017-05-08 13:00:02 +0900 | [diff] [blame] | 26 | shared_libs: [ | 
| Yiwei Zhang | 64d8921 | 2018-11-27 19:58:29 -0800 | [diff] [blame] | 27 | "libbase", | 
| Yiwei Zhang | cb9d4e4 | 2019-02-06 20:22:59 -0800 | [diff] [blame] | 28 | "libbinder", | 
| Cody Northrop | 629ce4e | 2018-10-15 07:22:09 -0600 | [diff] [blame] | 29 | "libcutils", | 
| dimitry | 6d23529 | 2019-03-19 12:29:27 +0100 | [diff] [blame] | 30 | "libdl_android", | 
| Yiwei Zhang | 64d8921 | 2018-11-27 19:58:29 -0800 | [diff] [blame] | 31 | "liblog", | 
| Yiwei Zhang | cb9d4e4 | 2019-02-06 20:22:59 -0800 | [diff] [blame] | 32 | "libutils", | 
| Jiyong Park | a3f8840 | 2017-05-08 13:00:02 +0900 | [diff] [blame] | 33 | ], | 
|  | 34 |  | 
| Yiwei Zhang | 49b9ac7 | 2019-08-05 16:57:17 -0700 | [diff] [blame] | 35 | header_libs: [ | 
| Paul Duffin | 0802618 | 2019-09-12 15:01:28 +0100 | [diff] [blame] | 36 | "libnativeloader-headers", | 
| Yiwei Zhang | 49b9ac7 | 2019-08-05 16:57:17 -0700 | [diff] [blame] | 37 | ], | 
|  | 38 |  | 
| Jiyong Park | a3f8840 | 2017-05-08 13:00:02 +0900 | [diff] [blame] | 39 | export_include_dirs: ["include"], | 
|  | 40 | } |