31 lines
919 B
Plaintext
31 lines
919 B
Plaintext
// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
|
|
// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
|
|
// DEPENDING ON IT IN YOUR PROJECT. ***
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "device_generic_vulkan-cereal_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["device_generic_vulkan-cereal_license"],
|
|
}
|
|
|
|
cc_test_library {
|
|
name: "gfxstream_oswindow_test_support",
|
|
defaults: [ "gfxstream_defaults" ],
|
|
shared_libs: [
|
|
"libbase",
|
|
],
|
|
static_libs: [
|
|
"gfxstream_base",
|
|
"gfxstream_host_common",
|
|
],
|
|
srcs: [
|
|
"OSWindow.cpp",
|
|
"stub/StubWindow.cpp",
|
|
],
|
|
export_include_dirs: ["."],
|
|
}
|