Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(954)

Side by Side Diff: tools/flags/SkCommonFlags.cpp

Issue 1100773003: DM: failure to canary a sink is now fatal. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dm/DM.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkCommonFlags.h" 8 #include "SkCommonFlags.h"
9 9
10 DEFINE_string(config, "565 8888 gpu nonrendering angle nvprmsaa4 hwui ", 10 DEFINE_string(config, "565 8888 gpu nonrendering angle hwui ",
11 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvp rmsaa16 " 11 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvp rmsaa16 "
12 "gpudft gpunull gpudebug angle mesa (and many more)"); 12 "gpudft gpunull gpudebug angle mesa (and many more)");
13 13
14 DEFINE_bool(cpu, true, "master switch for running CPU-bound work."); 14 DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
15 15
16 DEFINE_bool(dryRun, false, 16 DEFINE_bool(dryRun, false,
17 "just print the tests that would be run, without actually running th em."); 17 "just print the tests that would be run, without actually running th em.");
18 18
19 DEFINE_bool(gpu, true, "master switch for running GPU-bound work."); 19 DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
20 20
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose."); 53 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
54 54
55 DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs."); 55 DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
56 56
57 DEFINE_string(key, "", 57 DEFINE_string(key, "",
58 "Space-separated key/value pairs to add to JSON identifying this b uilder."); 58 "Space-separated key/value pairs to add to JSON identifying this b uilder.");
59 DEFINE_string(properties, "", 59 DEFINE_string(properties, "",
60 "Space-separated key/value pairs to add to JSON identifying this r un."); 60 "Space-separated key/value pairs to add to JSON identifying this r un.");
61 61
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698