OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "CrashHandler.h" | 8 #include "CrashHandler.h" |
9 #include "OverwriteLine.h" | 9 #include "OverwriteLine.h" |
10 #include "Resources.h" | 10 #include "Resources.h" |
11 #include "../private/SkAtomics.h" | 11 #include "SkAtomics.h" |
12 #include "SkCommonFlags.h" | 12 #include "SkCommonFlags.h" |
13 #include "SkGraphics.h" | 13 #include "SkGraphics.h" |
14 #include "SkOSFile.h" | 14 #include "SkOSFile.h" |
15 #include "SkRunnable.h" | 15 #include "SkRunnable.h" |
16 #include "SkTArray.h" | 16 #include "SkTArray.h" |
17 #include "SkTaskGroup.h" | 17 #include "SkTaskGroup.h" |
18 #include "SkTemplates.h" | 18 #include "SkTemplates.h" |
19 #include "SkTime.h" | 19 #include "SkTime.h" |
20 #include "Test.h" | 20 #include "Test.h" |
21 | 21 |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 SkDebugf("\n"); | 219 SkDebugf("\n"); |
220 return (status.failCount() == 0) ? 0 : 1; | 220 return (status.failCount() == 0) ? 0 : 1; |
221 } | 221 } |
222 | 222 |
223 #if !defined(SK_BUILD_FOR_IOS) | 223 #if !defined(SK_BUILD_FOR_IOS) |
224 int main(int argc, char** argv) { | 224 int main(int argc, char** argv) { |
225 SkCommandLineFlags::Parse(argc, argv); | 225 SkCommandLineFlags::Parse(argc, argv); |
226 return test_main(); | 226 return test_main(); |
227 } | 227 } |
228 #endif | 228 #endif |
OLD | NEW |