You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
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_goldfish-opengl_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
// SPDX-license-identifier-GPL-2.0
|
|
default_applicable_licenses: ["device_generic_goldfish-opengl_license"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libandroidemu",
|
|
vendor: true,
|
|
srcs: [
|
|
"android/base/AlignedBuf.cpp",
|
|
"android/base/files/MemStream.cpp",
|
|
"android/base/files/Stream.cpp",
|
|
"android/base/files/StreamSerializing.cpp",
|
|
"android/base/Pool.cpp",
|
|
"android/base/StringFormat.cpp",
|
|
"android/base/AndroidSubAllocator.cpp",
|
|
"android/base/synchronization/AndroidMessageChannel.cpp",
|
|
"android/base/threads/AndroidFunctorThread.cpp",
|
|
"android/base/threads/AndroidThreadStore.cpp",
|
|
"android/base/threads/AndroidThread_pthread.cpp",
|
|
"android/base/threads/AndroidWorkPool.cpp",
|
|
"android/base/Tracing.cpp",
|
|
"android/utils/debug.c",
|
|
],
|
|
shared_libs: [
|
|
"libcutils",
|
|
"libutils",
|
|
"liblog",
|
|
],
|
|
export_include_dirs: [
|
|
".",
|
|
],
|
|
cflags: [
|
|
"-DLOG_TAG=\"androidemu\"",
|
|
"-Wno-missing-field-initializers",
|
|
"-fvisibility=default",
|
|
"-fstrict-aliasing",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libringbuffer",
|
|
vendor: true,
|
|
srcs: [
|
|
"android/base/ring_buffer.c",
|
|
],
|
|
shared_libs: [
|
|
"libcutils",
|
|
"libutils",
|
|
"liblog",
|
|
],
|
|
export_include_dirs: [
|
|
".",
|
|
],
|
|
cflags: [
|
|
"-DLOG_TAG=\"androidemu\"",
|
|
"-Wno-missing-field-initializers",
|
|
"-fvisibility=default",
|
|
"-fstrict-aliasing",
|
|
],
|
|
}
|