aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Derek Sollenberger <djsollen@google.com>2017-01-05 09:50:22 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-05 15:20:21 +0000
commitc65386ae55555819e321b77fd5a2b25dfcf94c3d (patch)
tree6ad13bbb786b1d7be16948f1cef4c404501d65b7 /tools
parentd4e75e24a7f8722e0c1903cd39e418f82d18090a (diff)
Remove DMSrcSinkAndroid.
This code involves Skia having knowledge of HWUI internals and causes problems with various build systems. It is also not currently being used and is therefore expendable. Change-Id: I7b6a37fa4c9afcefbc6a957b49e7735da872ff14 Reviewed-on: https://skia-review.googlesource.com/6597 Commit-Queue: Derek Sollenberger <djsollen@google.com> Reviewed-by: Leon Scroggins <scroggo@google.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/flags/SkCommonFlagsConfig.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/tools/flags/SkCommonFlagsConfig.cpp b/tools/flags/SkCommonFlagsConfig.cpp
index 5763e4a6ca..0654d0e5ae 100644
--- a/tools/flags/SkCommonFlagsConfig.cpp
+++ b/tools/flags/SkCommonFlagsConfig.cpp
@@ -20,9 +20,6 @@ static const char defaultConfigs[] =
#if defined(SK_BUILD_FOR_WIN)
" angle_d3d11_es2"
#endif
-#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
- " hwui"
-#endif
;
static const struct {
@@ -82,11 +79,7 @@ static const struct {
};
static const char configHelp[] =
- "Options: 565 8888 srgb f16 nonrendering null pdf pdfa skp pipe svg xps"
-#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
- " hwui"
-#endif
- ;
+ "Options: 565 8888 srgb f16 nonrendering null pdf pdfa skp pipe svg xps";
static const char* config_help_fn() {
static SkString helpString;