1// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE 2// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE 3// DEPENDING ON IT IN YOUR PROJECT. *** 4 5package { 6 // See: http://go/android-license-faq 7 // A large-scale-change added 'default_applicable_licenses' to import 8 // all of the 'license_kinds' from "hardware_google_gfxstream_license" 9 // to get the below license kinds: 10 // SPDX-license-identifier-Apache-2.0 11 // SPDX-license-identifier-BSD 12 default_applicable_licenses: ["hardware_google_gfxstream_license"], 13} 14 15cc_test_library { 16 name: "libgfxstream_oswindow_test_support", 17 defaults: ["gfxstream_defaults"], 18 header_libs: [ 19 "gfxstream_opengl_headers", 20 ], 21 shared_libs: [ 22 "libbase", 23 ], 24 static_libs: [ 25 "gfxstream_base", 26 "gfxstream_host_common", 27 ], 28 srcs: [ 29 "OSWindow.cpp", 30 "stub/StubWindow.cpp", 31 ], 32 export_include_dirs: ["."], 33} 34