| OLD | NEW |
| 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 #ifndef SK_COMMON_FLAGS_H | 8 #ifndef SK_COMMON_FLAGS_H |
| 9 #define SK_COMMON_FLAGS_H | 9 #define SK_COMMON_FLAGS_H |
| 10 | 10 |
| 11 #include "SkCommandLineFlags.h" | 11 #include "SkCommandLineFlags.h" |
| 12 | 12 |
| 13 DECLARE_string(config); | 13 DECLARE_string(config); |
| 14 DECLARE_bool(cpu); | 14 DECLARE_bool(cpu); |
| 15 DECLARE_bool(dryRun); | 15 DECLARE_bool(dryRun); |
| 16 DECLARE_bool(gpu); | 16 DECLARE_bool(gpu); |
| 17 DECLARE_string(gpuAPI); | 17 DECLARE_string(gpuAPI); |
| 18 DECLARE_bool(leaks); | 18 DECLARE_bool(leaks); |
| 19 DECLARE_string(match); | 19 DECLARE_string(match); |
| 20 DECLARE_bool(quiet); | 20 DECLARE_bool(quiet); |
| 21 DECLARE_bool(resetGpuContext); | 21 DECLARE_bool(resetGpuContext); |
| 22 DECLARE_bool(abandonGpuContext); | 22 DECLARE_bool(abandonGpuContext); |
| 23 DECLARE_bool(single); | 23 DECLARE_bool(single); |
| 24 DECLARE_string(skps); |
| 24 DECLARE_int32(threads); | 25 DECLARE_int32(threads); |
| 25 DECLARE_string(resourcePath); | 26 DECLARE_string(resourcePath); |
| 26 DECLARE_bool(verbose); | 27 DECLARE_bool(verbose); |
| 27 DECLARE_bool(veryVerbose); | 28 DECLARE_bool(veryVerbose); |
| 28 | 29 |
| 29 #endif | 30 #endif |
| OLD | NEW |