From 38925aa37c17c0f54868852b8c3edf373400c742 Mon Sep 17 00:00:00 2001 From: mtklein Date: Wed, 21 Sep 2016 10:11:25 -0700 Subject: [PATCH] Build tools on NoGPU bots. I was just lazy disabling this before. It turns out to not be difficult. This gets us slightly better testing out of the NoGPU bot, as we now know not only that Skia compiles, but also that DM and nanobench can link (and thus that Skia's got enough compiled in it to be a coherent library). skpbench requires GPU support. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2356283002 Review-Url: https://codereview.chromium.org/2356283002 --- BUILD.gn | 95 ++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 45 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index be7a975..9dd881d 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -28,8 +28,8 @@ declare_args() { skia_enable_vulkan_debug_layers = is_skia_standalone && is_debug } -# Our tools require static linking (they use non-exported symbols) and GPU support (just lazy). -skia_enable_tools = skia_enable_tools && skia_enable_gpu && !is_component_build +# Our tools require static linking (they use non-exported symbols). +skia_enable_tools = skia_enable_tools && !is_component_build fontmgr_android_enabled = skia_use_expat && skia_use_freetype @@ -625,39 +625,42 @@ if (skia_enable_tools) { } test_lib("gpu_tool_utils") { - public_defines = [] - public_include_dirs = [ "tools/gpu" ] - sources = [ - "tools/gpu/GrContextFactory.cpp", - "tools/gpu/GrTest.cpp", - "tools/gpu/TestContext.cpp", - "tools/gpu/gl/GLTestContext.cpp", - "tools/gpu/gl/debug/DebugGLTestContext.cpp", - "tools/gpu/gl/debug/GrBufferObj.cpp", - "tools/gpu/gl/debug/GrFrameBufferObj.cpp", - "tools/gpu/gl/debug/GrProgramObj.cpp", - "tools/gpu/gl/debug/GrShaderObj.cpp", - "tools/gpu/gl/debug/GrTextureObj.cpp", - "tools/gpu/gl/debug/GrTextureUnitObj.cpp", - "tools/gpu/gl/null/NullGLTestContext.cpp", - ] - libs = [] - - if (is_android) { - sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ] - } else if (is_linux) { - sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ] - } else if (is_mac) { - sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ] - } + public_include_dirs = [] + if (skia_enable_gpu) { + public_defines = [] + public_include_dirs += [ "tools/gpu" ] + sources = [ + "tools/gpu/GrContextFactory.cpp", + "tools/gpu/GrTest.cpp", + "tools/gpu/TestContext.cpp", + "tools/gpu/gl/GLTestContext.cpp", + "tools/gpu/gl/debug/DebugGLTestContext.cpp", + "tools/gpu/gl/debug/GrBufferObj.cpp", + "tools/gpu/gl/debug/GrFrameBufferObj.cpp", + "tools/gpu/gl/debug/GrProgramObj.cpp", + "tools/gpu/gl/debug/GrShaderObj.cpp", + "tools/gpu/gl/debug/GrTextureObj.cpp", + "tools/gpu/gl/debug/GrTextureUnitObj.cpp", + "tools/gpu/gl/null/NullGLTestContext.cpp", + ] + libs = [] + + if (is_android) { + sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ] + } else if (is_linux) { + sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ] + } else if (is_mac) { + sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ] + } - if (skia_use_vulkan) { - sources += [ "tools/gpu/vk/VkTestContext.cpp" ] - } - if (skia_use_mesa) { - public_defines += [ "SK_MESA" ] - sources += [ "tools/gpu/gl/mesa/GLTestContext_mesa.cpp" ] - libs += [ "OSMesa" ] + if (skia_use_vulkan) { + sources += [ "tools/gpu/vk/VkTestContext.cpp" ] + } + if (skia_use_mesa) { + public_defines += [ "SK_MESA" ] + sources += [ "tools/gpu/gl/mesa/GLTestContext_mesa.cpp" ] + libs += [ "OSMesa" ] + } } } @@ -864,17 +867,19 @@ if (skia_enable_tools) { testonly = true } - executable("skpbench") { - sources = [ - "tools/skpbench/skpbench.cpp", - ] - deps = [ - ":flags", - ":gpu_tool_utils", - ":skia", - ":tool_utils", - ] - testonly = true + if (skia_enable_gpu) { + executable("skpbench") { + sources = [ + "tools/skpbench/skpbench.cpp", + ] + deps = [ + ":flags", + ":gpu_tool_utils", + ":skia", + ":tool_utils", + ] + testonly = true + } } if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc for mipsel. -- 2.7.4