• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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. ***
4package {
5    // See: http://go/android-license-faq
6    // A large-scale-change added 'default_applicable_licenses' to import
7    // all of the 'license_kinds' from "device_generic_vulkan-cereal_license"
8    // to get the below license kinds:
9    //   SPDX-license-identifier-Apache-2.0
10    //   SPDX-license-identifier-ISC
11    //   SPDX-license-identifier-MIT
12    //   legacy_by_exception_only (by exception only)
13    //   legacy_notice
14    //   legacy_unencumbered
15    default_applicable_licenses: ["device_generic_vulkan-cereal_license"],
16}
17
18cc_library_static {
19    name: "gfxstream_apigen_codec_common",
20    defaults: [ "gfxstream_defaults" ],
21    static_libs: [ "gfxstream_base", "gfxstream_host_common", ],
22    cflags: [ "-fvisibility=hidden" ],
23    export_include_dirs: [ "." ],
24    srcs: [
25        "ChecksumCalculator.cpp",
26        "ChecksumCalculatorThreadInfo.cpp",
27        "glUtils.cpp",
28    ],
29    target: {
30        host: {
31            srcs: [ "X11Support.cpp", ],
32        }
33    }
34}
35