• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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 "device_generic_vulkan-cereal_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    //   SPDX-license-identifier-GPL-2.0
8    default_applicable_licenses: ["device_generic_vulkan-cereal_license"],
9}
10
11cc_library_static {
12    name: "gfxstream_snapshot",
13    defaults: [ "gfxstream_defaults" ],
14    srcs: [
15        "TextureLoader.cpp",
16        "TextureSaver.cpp",
17    ],
18    static_libs: [
19        "gfxstream_base",
20    ],
21    export_include_dirs: [ "." ],
22}
23