OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "PathOpsExtendedTest.h" | 8 #include "PathOpsExtendedTest.h" |
9 #include "PathOpsThreadedCommon.h" | 9 #include "PathOpsThreadedCommon.h" |
10 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
11 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
12 #include "SkForceLinking.h" | 12 #include "SkForceLinking.h" |
13 #include "SkMatrix.h" | 13 #include "SkMatrix.h" |
14 #include "SkMutex.h" | |
15 #include "SkPaint.h" | 14 #include "SkPaint.h" |
16 #include "SkRTConf.h" | 15 #include "SkRTConf.h" |
17 #include "SkStream.h" | 16 #include "SkStream.h" |
| 17 #include "SkThread.h" |
18 | 18 |
19 #ifdef SK_BUILD_FOR_MAC | 19 #ifdef SK_BUILD_FOR_MAC |
20 #include <sys/sysctl.h> | 20 #include <sys/sysctl.h> |
21 #endif | 21 #endif |
22 | 22 |
23 __SK_FORCE_IMAGE_DECODER_LINKING; | 23 __SK_FORCE_IMAGE_DECODER_LINKING; |
24 | 24 |
25 DEFINE_bool2(runFail, f, false, "run tests known to fail."); | 25 DEFINE_bool2(runFail, f, false, "run tests known to fail."); |
26 DEFINE_bool2(runBinary, f, false, "run tests known to fail binary sect."); | 26 DEFINE_bool2(runBinary, f, false, "run tests known to fail binary sect."); |
27 | 27 |
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 if (foundSkip && tests[index].fun != firstTest) { | 669 if (foundSkip && tests[index].fun != firstTest) { |
670 SkDebugf(" %s,\n", tests[index].str); | 670 SkDebugf(" %s,\n", tests[index].str); |
671 } | 671 } |
672 if (tests[index].fun == stopTest || index == last) { | 672 if (tests[index].fun == stopTest || index == last) { |
673 break; | 673 break; |
674 } | 674 } |
675 index += reverse ? -1 : 1; | 675 index += reverse ? -1 : 1; |
676 } while (true); | 676 } while (true); |
677 #endif | 677 #endif |
678 } | 678 } |
OLD | NEW |