Bob Badour | 650a8da | 2021-02-12 21:06:44 -0800 | [diff] [blame] | 1 | package { |
| 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 | // SPDX-license-identifier-GPL-2.0 |
| 9 | // SPDX-license-identifier-MIT |
| 10 | // legacy_unencumbered |
| 11 | default_applicable_licenses: ["device_generic_vulkan-cereal_license"], |
| 12 | } |
| 13 | |
Lingfeng Yang | a2a3b0f | 2020-11-04 11:50:46 -0800 | [diff] [blame] | 14 | cc_library_static { |
| 15 | name: "gfxstream_base", |
| 16 | defaults: ["gfxstream_defaults"], |
Kaiyi Li | 291904d | 2022-02-11 14:52:47 -0800 | [diff] [blame] | 17 | header_libs: ["gfxstream_renderdoc_headers"], |
Lingfeng Yang | a2a3b0f | 2020-11-04 11:50:46 -0800 | [diff] [blame] | 18 | srcs: [ |
| 19 | "AlignedBuf.cpp", |
| 20 | "CompressingStream.cpp", |
| 21 | "CpuTime.cpp", |
| 22 | "DecompressingStream.cpp", |
| 23 | "FileUtils.cpp", |
| 24 | "FunctorThread.cpp", |
| 25 | "GLObjectCounter.cpp", |
| 26 | "LayoutResolver.cpp", |
| 27 | "MemStream.cpp", |
| 28 | "StdioStream.cpp", |
| 29 | "MemoryTracker.cpp", |
| 30 | "MessageChannel.cpp", |
Doug Horn | 0c2ea5a | 2021-10-29 17:30:16 -0700 | [diff] [blame] | 31 | "MetricsNoOp.cpp", |
Lingfeng Yang | a2a3b0f | 2020-11-04 11:50:46 -0800 | [diff] [blame] | 32 | "PathUtils.cpp", |
| 33 | "ring_buffer.cpp", |
| 34 | "SharedLibrary.cpp", |
| 35 | "StringFormat.cpp", |
| 36 | "Stream.cpp", |
| 37 | "StreamSerializing.cpp", |
| 38 | "SubAllocator.cpp", |
| 39 | "System.cpp", |
| 40 | "Tracing.cpp", |
Lingfeng Yang | a2a3b0f | 2020-11-04 11:50:46 -0800 | [diff] [blame] | 41 | "Thread_pthread.cpp", |
| 42 | ], |
Doug Horn | 8de2047 | 2020-12-09 13:33:50 -0800 | [diff] [blame] | 43 | whole_static_libs: ["perfetto-tracing-only"], |
Kaiyi Li | 291904d | 2022-02-11 14:52:47 -0800 | [diff] [blame] | 44 | static_libs: ["gfxstream_lz4"], |
| 45 | export_header_lib_headers: ["gfxstream_renderdoc_headers"] |
Lingfeng Yang | a2a3b0f | 2020-11-04 11:50:46 -0800 | [diff] [blame] | 46 | } |