aboutsummaryrefslogtreecommitdiffhomepage
path: root/public.bzl
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2018-06-01 11:01:11 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-01 15:31:16 +0000
commitdb537605b5172722b86d47294ec352034a2b0b65 (patch)
tree7aac0c1a8f57f11097a823cca42b3299af194140 /public.bzl
parent322a859bdac2830145313a9ed2002f69e29535c5 (diff)
exclude cgms.cpp from DM on Google3 build
Having a mix of C and C++ sources in DM makes setting build flags tricky. This removes the C sources. I don't think it's important to run these C-based GMs in Google3... I don't even really think it's terribly important to run DM there at all. Change-Id: I2c2653ee15981f9a63965fb8b7e483a5c5e94830 Reviewed-on: https://skia-review.googlesource.com/131441 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'public.bzl')
-rw-r--r--public.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/public.bzl b/public.bzl
index 0c00f74d45..c9b789c2ad 100644
--- a/public.bzl
+++ b/public.bzl
@@ -433,7 +433,6 @@ DM_SRCS_ALL = struct(
"dm/*.h",
"experimental/svg/model/*.cpp",
"experimental/svg/model/*.h",
- "gm/*.c",
"gm/*.cpp",
"gm/*.h",
"src/xml/*.cpp",
@@ -489,6 +488,7 @@ DM_SRCS_ALL = struct(
"tools/trace/*.h",
],
exclude = [
+ "gm/cgms.cpp",
"tests/FontMgrAndroidParserTest.cpp", # Android-only.
"tests/skia_test.cpp", # Old main.
"tools/gpu/atlastext/*",