blob: 759582cab68ac894a623e0cbd517c45966ee194e [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
Sasha Smundak6a6bdad2019-01-24 23:20:47 -080012cc_binary {
13 name: "test-opengl-tritex",
14 srcs: ["tritex.cpp"],
15 cflags: [
16 "-Wall",
17 "-Werror",
18 ],
19 shared_libs: [
20 "libcutils",
21 "libEGL",
22 "libGLESv1_CM",
23 "libui",
24 "libgui",
25 "libutils",
26 ],
27 static_libs: ["libglTest"],
28}