aboutsummaryrefslogtreecommitdiffstats
path: root/tools/flags
diff options
context:
space:
mode:
authormtklein <mtklein@chromium.org>2015-06-26 11:45:03 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-26 11:45:03 -0700
commit2766c00fc0b6a07d46e5f74cdad45da2ef625237 (patch)
tree152a6169021ef393f5719d511becf9f81fec8c02 /tools/flags
parent46043ee50fe0532df6213172506fd16324b21e58 (diff)
downloadplatform_external_skqp-2766c00fc0b6a07d46e5f74cdad45da2ef625237.tar.gz
platform_external_skqp-2766c00fc0b6a07d46e5f74cdad45da2ef625237.tar.bz2
platform_external_skqp-2766c00fc0b6a07d46e5f74cdad45da2ef625237.zip
remove SkInstCnt
It's been outclassed by Valgrind and leak sanitizer, and it seems to be causing problems for external folks building Skia. I'm not sure why our own builds seem unaffected. Latest thread: https://groups.google.com/forum/#!topic/skia-discuss/oj9FsQwwSF0 BUG=skia: Review URL: https://codereview.chromium.org/1217573002
Diffstat (limited to 'tools/flags')
-rw-r--r--tools/flags/SkCommonFlags.cpp2
-rw-r--r--tools/flags/SkCommonFlags.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/tools/flags/SkCommonFlags.cpp b/tools/flags/SkCommonFlags.cpp
index 1a9018bec1..09e74ba790 100644
--- a/tools/flags/SkCommonFlags.cpp
+++ b/tools/flags/SkCommonFlags.cpp
@@ -26,8 +26,6 @@ DEFINE_string(gpuAPI, "", "Force use of specific gpu API. Using \"gl\" "
DEFINE_string(images, "resources", "Directory of images to decode.");
-DEFINE_bool2(leaks, l, false, "show leaked ref cnt'd objects.");
-
DEFINE_string2(match, m, NULL,
"[~][^]substring[$] [...] of GM name to run.\n"
"Multiple matches may be separated by spaces.\n"
diff --git a/tools/flags/SkCommonFlags.h b/tools/flags/SkCommonFlags.h
index 6a5ff58f4f..d6fb2c1d9b 100644
--- a/tools/flags/SkCommonFlags.h
+++ b/tools/flags/SkCommonFlags.h
@@ -16,7 +16,6 @@ DECLARE_bool(dryRun);
DECLARE_bool(gpu);
DECLARE_string(gpuAPI);
DECLARE_string(images);
-DECLARE_bool(leaks);
DECLARE_string(match);
DECLARE_bool(quiet);
DECLARE_bool(resetGpuContext);