| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 1 |  | 
| Bob Badour | 3306e49 | 2021-02-25 15:35:37 -0800 | [diff] [blame] | 2 | package { | 
 | 3 |     // See: http://go/android-license-faq | 
 | 4 |     // A large-scale-change added 'default_applicable_licenses' to import | 
 | 5 |     // all of the 'license_kinds' from "frameworks_native_license" | 
 | 6 |     // to get the below license kinds: | 
 | 7 |     //   SPDX-license-identifier-Apache-2.0 | 
 | 8 |     default_applicable_licenses: ["frameworks_native_license"], | 
 | 9 | } | 
 | 10 |  | 
| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 11 | cc_test { | 
 | 12 |  | 
 | 13 |     name: "EGL_test", | 
 | 14 |  | 
 | 15 |     srcs: [ | 
 | 16 |         "egl_cache_test.cpp", | 
 | 17 |         "EGL_test.cpp", | 
 | 18 |     ], | 
 | 19 |  | 
| Chih-Hung Hsieh | 7e9cd8e | 2017-11-14 15:08:56 -0800 | [diff] [blame] | 20 |     cflags: [ | 
 | 21 |         "-Wall", | 
 | 22 |         "-Werror", | 
 | 23 |     ], | 
 | 24 |  | 
| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 25 |     shared_libs: [ | 
 | 26 |         "android.hardware.configstore@1.0", | 
 | 27 |         "android.hardware.configstore-utils", | 
 | 28 |         "libEGL", | 
 | 29 |         "libbase", | 
 | 30 |         "libcutils", | 
 | 31 |         "libbinder", | 
 | 32 |         "libgui", | 
 | 33 |         "libhidlbase", | 
| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 34 |         "liblog", | 
 | 35 |         "libutils", | 
| Weiwan Liu | 3ca9297 | 2018-09-28 15:44:12 -0700 | [diff] [blame] | 36 |         "libnativewindow", | 
| Sundong Ahn | 204fb1f | 2020-04-23 21:56:36 +0900 | [diff] [blame] | 37 |         "libSurfaceFlingerProp", | 
| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 38 |     ], | 
 | 39 |  | 
 | 40 |     include_dirs: [ | 
| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 41 |         "frameworks/native/opengl/libs", | 
 | 42 |         "frameworks/native/opengl/libs/EGL", | 
 | 43 |     ], | 
 | 44 |  | 
| Christopher Ferris | ddd1d6b | 2019-09-26 08:27:25 -0700 | [diff] [blame] | 45 |     header_libs: [ | 
 | 46 |         "bionic_libc_platform_headers", | 
| Sundong Ahn | 204fb1f | 2020-04-23 21:56:36 +0900 | [diff] [blame] | 47 |         "libsurfaceflinger_headers", | 
| Christopher Ferris | ddd1d6b | 2019-09-26 08:27:25 -0700 | [diff] [blame] | 48 |     ], | 
| Chih-Hung Hsieh | da3ad6f | 2017-10-26 15:01:12 -0700 | [diff] [blame] | 49 | } |