| cc_defaults { | 
 |     name: "renderengine_defaults", | 
 |     cflags: [ | 
 |         "-DLOG_TAG=\"RenderEngine\"", | 
 |         "-Wall", | 
 |         "-Werror", | 
 |         "-Wthread-safety", | 
 |         "-Wunused", | 
 |         "-Wunreachable-code", | 
 |     ], | 
 | } | 
 |  | 
 | cc_defaults { | 
 |     name: "librenderengine_defaults", | 
 |     defaults: ["renderengine_defaults"], | 
 |     cflags: [ | 
 |         "-DGL_GLEXT_PROTOTYPES", | 
 |         "-DEGL_EGLEXT_PROTOTYPES", | 
 |     ], | 
 |     shared_libs: [ | 
 |         "libbase", | 
 |         "libcutils", | 
 |         "libEGL", | 
 |         "libGLESv1_CM", | 
 |         "libGLESv2", | 
 |         "libgui", | 
 |         "liblog", | 
 |         "libnativewindow", | 
 |         "libprocessgroup", | 
 |         "libsync", | 
 |         "libui", | 
 |         "libutils", | 
 |     ], | 
 |     include_dirs: [ | 
 |         "external/skia/src/gpu", | 
 |     ], | 
 |     whole_static_libs: ["libskia"], | 
 |     local_include_dirs: ["include"], | 
 |     export_include_dirs: ["include"], | 
 | } | 
 |  | 
 | filegroup { | 
 |     name: "librenderengine_sources", | 
 |     srcs: [ | 
 |         "Description.cpp", | 
 |         "Mesh.cpp", | 
 |         "RenderEngine.cpp", | 
 |         "Texture.cpp", | 
 |     ], | 
 | } | 
 |  | 
 | filegroup { | 
 |     name: "librenderengine_gl_sources", | 
 |     srcs: [ | 
 |         "gl/GLESRenderEngine.cpp", | 
 |         "gl/GLExtensions.cpp", | 
 |         "gl/GLFramebuffer.cpp", | 
 |         "gl/GLImage.cpp", | 
 |         "gl/GLShadowTexture.cpp", | 
 |         "gl/GLShadowVertexGenerator.cpp", | 
 |         "gl/GLSkiaShadowPort.cpp", | 
 |         "gl/GLVertexBuffer.cpp", | 
 |         "gl/ImageManager.cpp", | 
 |         "gl/Program.cpp", | 
 |         "gl/ProgramCache.cpp", | 
 |         "gl/filters/BlurFilter.cpp", | 
 |         "gl/filters/GenericProgram.cpp", | 
 |     ], | 
 | } | 
 |  | 
 | filegroup { | 
 |     name: "librenderengine_threaded_sources", | 
 |     srcs: [ | 
 |         "threaded/RenderEngineThreaded.cpp", | 
 |     ], | 
 | } | 
 |  | 
 | filegroup { | 
 |     name: "librenderengine_skia_sources", | 
 |     srcs: [ | 
 |         "skia/AutoBackendTexture.cpp", | 
 |         "skia/SkiaRenderEngine.cpp", | 
 |         "skia/SkiaGLRenderEngine.cpp", | 
 |         "skia/debug/CaptureTimer.cpp", | 
 |         "skia/debug/CommonPool.cpp", | 
 |         "skia/debug/SkiaCapture.cpp", | 
 |         "skia/filters/BlurFilter.cpp", | 
 |         "skia/filters/LinearEffect.cpp", | 
 |     ], | 
 | } | 
 |  | 
 | cc_library_static { | 
 |     name: "librenderengine", | 
 |     defaults: ["librenderengine_defaults"], | 
 |     double_loadable: true, | 
 |     clang: true, | 
 |     cflags: [ | 
 |         "-fvisibility=hidden", | 
 |         "-Werror=format", | 
 |         "-Wno-unused-parameter", | 
 |     ], | 
 |     srcs: [ | 
 |         ":librenderengine_sources", | 
 |         ":librenderengine_gl_sources", | 
 |         ":librenderengine_threaded_sources", | 
 |         ":librenderengine_skia_sources", | 
 |     ], | 
 |     lto: { | 
 |         thin: true, | 
 |     }, | 
 | } | 
 |  | 
 | cc_library_static { | 
 |     name: "librenderengine_mocks", | 
 |     defaults: ["librenderengine_defaults"], | 
 |     srcs: [ | 
 |         "mock/Framebuffer.cpp", | 
 |         "mock/Image.cpp", | 
 |         "mock/RenderEngine.cpp", | 
 |     ], | 
 |     static_libs: [ | 
 |         "libgtest", | 
 |         "libgmock", | 
 |     ], | 
 |     local_include_dirs: ["include"], | 
 |     export_include_dirs: ["include"], | 
 | } |