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.
42 lines
695 B
42 lines
695 B
cc_library_shared {
|
|
name: "libdolgles",
|
|
|
|
shared_libs: [
|
|
"libEGL",
|
|
"libGLESv2",
|
|
"libft2",
|
|
"libuapi_securec",
|
|
"liblog",
|
|
],
|
|
|
|
include_dirs: [
|
|
"vendor/platform/secure_c/include",
|
|
],
|
|
|
|
header_libs: [
|
|
"libdolgles_headers",
|
|
],
|
|
|
|
export_header_lib_headers: [
|
|
"libdolgles_headers",
|
|
],
|
|
|
|
cflags: [
|
|
"-DGL_GLEXT_PROTOTYPES",
|
|
"-DEGL_EGLEXT_PROTOTYPES",
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
ldflags: [
|
|
"-s",
|
|
],
|
|
|
|
srcs: ["src/*.cpp",
|
|
"src/common/*.cpp",
|
|
"src/fontmanager/*.cpp",
|
|
"src/osdmanager/*.cpp",
|
|
"src/eglmanager/*.cpp",
|
|
],
|
|
}
|