Fix SVG flag iOS linking

TBR=mtklein@google.com
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2344533002

Review-Url: https://codereview.chromium.org/2344533002
This commit is contained in:
fmalita 2016-09-14 09:05:43 -07:00 committed by Commit bot
parent 6519c21a57
commit 95573e4865
4 changed files with 3 additions and 4 deletions

View File

@ -127,8 +127,6 @@ DEFINE_string(sourceType, "",
DEFINE_string(benchType, "",
"Apply usual --match rules to bench type: micro, recording, playback, skcodec, etc.");
DEFINE_string(svgs, "", "Directory to read SVGs from, or a single SVG file.");
static double now_ms() { return SkTime::GetNSecs() * 1e-6; }
static SkString humanize(double ms) {

View File

@ -73,8 +73,6 @@ DEFINE_int32(shard, 0, "Which shard do I run?");
DEFINE_string(mskps, "", "Directory to read mskps from, or a single mskp file.");
DEFINE_string(svgs, "", "Directory to read SVGs from, or a single SVG file.");
using namespace DM;
using sk_gpu_test::GrContextFactory;
using sk_gpu_test::GLTestContext;

View File

@ -48,6 +48,8 @@ DEFINE_bool(releaseAndAbandonGpuContext, false,
DEFINE_string(skps, "skps", "Directory to read skps from.");
DEFINE_string(svgs, "", "Directory to read SVGs from, or a single SVG file.");
DEFINE_int32(threads, -1, "Run threadsafe tests on a threadpool with this many extra threads, "
"defaulting to one extra thread per core.");

View File

@ -25,6 +25,7 @@ DECLARE_bool(preAbandonGpuContext);
DECLARE_bool(abandonGpuContext);
DECLARE_bool(releaseAndAbandonGpuContext);
DECLARE_string(skps);
DECLARE_string(svgs);
DECLARE_int32(threads);
DECLARE_string(resourcePath);
DECLARE_bool(verbose);