blob: d96a89564d534a91c15a78d68b4a8edba8128859 [file] [log] [blame]
Bob Badour3306e492021-02-25 15:35:37 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_native_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_native_license"],
8}
9
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070010cc_test {
11
12 name: "EGL_test",
Cody Northrop2a66e542022-12-19 15:32:11 -070013 test_suites: ["general-tests"],
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070014
15 srcs: [
16 "egl_cache_test.cpp",
17 "EGL_test.cpp",
18 ],
19
Chih-Hung Hsieh7e9cd8e2017-11-14 15:08:56 -080020 cflags: [
21 "-Wall",
22 "-Werror",
23 ],
24
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070025 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 Hsiehda3ad6f2017-10-26 15:01:12 -070034 "liblog",
35 "libutils",
Weiwan Liu3ca92972018-09-28 15:44:12 -070036 "libnativewindow",
Sundong Ahn204fb1f2020-04-23 21:56:36 +090037 "libSurfaceFlingerProp",
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070038 ],
39
40 include_dirs: [
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070041 "frameworks/native/opengl/libs",
42 "frameworks/native/opengl/libs/EGL",
43 ],
44
Christopher Ferrisddd1d6b2019-09-26 08:27:25 -070045 header_libs: [
46 "bionic_libc_platform_headers",
Sundong Ahn204fb1f2020-04-23 21:56:36 +090047 "libsurfaceflinger_headers",
Christopher Ferrisddd1d6b2019-09-26 08:27:25 -070048 ],
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070049}