• 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-BSD
8    default_applicable_licenses: ["device_generic_vulkan-cereal_license"],
9}
10
11cc_library_static {
12    name: "gfxstream_host_common",
13    defaults: [ "gfxstream_defaults" ],
14    static_libs: [
15        "gfxstream_base",
16    ],
17    srcs: [
18        "crash_reporter.cpp",
19        "vm_operations.cpp",
20        "feature_control.cpp",
21        "dma_device.cpp",
22        "sync_device.cpp",
23        "misc.cpp",
24        "window_operations.cpp",
25
26        "AndroidPipe.cpp",
27        "HostmemIdMapping.cpp",
28        "RefcountPipe.cpp",
29        "AndroidAgentFactory.cpp",
30
31        "GoldfishSyncCommandQueue.cpp",
32        "goldfish_sync.cpp",
33
34        "DmaMap.cpp",
35        "GoldfishDma.cpp",
36
37        "address_space_device_control_ops.cpp",
38        "address_space_device.cpp",
39        "address_space_host_memory_allocator.cpp",
40        "address_space_shared_slots_host_memory_allocator.cpp",
41        "address_space_graphics.cpp",
42        "address_space_host_media.cpp",
43
44        "avd/info.cpp",
45        "avd/hw-config.cpp",
46
47        "opengles.cpp",
48        "opengl/EmuglBackendList.cpp",
49        "opengl/emugl_config.cpp",
50        "opengl/GLProcessPipe.cpp",
51        "opengl/GpuFrameBridge.cpp",
52        "opengl/gpuinfo.cpp",
53        "opengl/logger.cpp",
54        "opengl/OpenglEsPipe.cpp",
55
56        "opengl/NativeGpuInfo_linux.cpp",
57    ],
58}
59