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 #include "SkCommandLineFlags.h" | 8 #include "SkCommandLineFlags.h" |
9 #include "SkPicture.h" | 9 #include "SkPicture.h" |
10 #include "SkPicturePlayback.h" | 10 #include "SkPictureData.h" |
11 #include "SkStream.h" | 11 #include "SkStream.h" |
12 | 12 |
13 DEFINE_string2(input, i, "", "skp on which to report"); | 13 DEFINE_string2(input, i, "", "skp on which to report"); |
14 DEFINE_bool2(version, v, true, "version"); | 14 DEFINE_bool2(version, v, true, "version"); |
15 DEFINE_bool2(width, w, true, "width"); | 15 DEFINE_bool2(width, w, true, "width"); |
16 DEFINE_bool2(height, h, true, "height"); | 16 DEFINE_bool2(height, h, true, "height"); |
17 DEFINE_bool2(flags, f, true, "flags"); | 17 DEFINE_bool2(flags, f, true, "flags"); |
18 DEFINE_bool2(tags, t, true, "tags"); | 18 DEFINE_bool2(tags, t, true, "tags"); |
19 DEFINE_bool2(quiet, q, false, "quiet"); | 19 DEFINE_bool2(quiet, q, false, "quiet"); |
20 | 20 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 } | 153 } |
154 | 154 |
155 return kSuccess; | 155 return kSuccess; |
156 } | 156 } |
157 | 157 |
158 #if !defined SK_BUILD_FOR_IOS | 158 #if !defined SK_BUILD_FOR_IOS |
159 int main(int argc, char * const argv[]) { | 159 int main(int argc, char * const argv[]) { |
160 return tool_main(argc, (char**) argv); | 160 return tool_main(argc, (char**) argv); |
161 } | 161 } |
162 #endif | 162 #endif |
OLD | NEW |