blob: ffb0c1f0c4dc719648a09d312e60a31875a8e1c0 [file] [log] [blame]
Bob Badour3c538232021-02-12 21:26:48 -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 // SPDX-license-identifier-MIT
8 // SPDX-license-identifier-Unicode-DFS
9 default_applicable_licenses: ["frameworks_native_license"],
10}
11
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070012cc_test {
13 name: "test-opengl-configdump",
14
15 gtest: false,
16
17 srcs: ["configdump.cpp"],
18
Chih-Hung Hsieh7e9cd8e2017-11-14 15:08:56 -080019 cflags: [
20 "-Wall",
21 "-Werror",
22 ],
23
Chih-Hung Hsiehda3ad6f2017-10-26 15:01:12 -070024 shared_libs: [
25 "libcutils",
26 "libEGL",
27 "libGLESv1_CM",
28 ],
29}