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

Side by Side Diff: tests/PathOpsExtendedTest.cpp

Issue 1215393002: Remove SkThread.h, include SkMutex.h or SkAtomics.h as appropriate. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: skimagefilter Created 5 years, 5 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 | « tests/PathOpsExtendedTest.h ('k') | tests/skia_test.cpp » ('j') | 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 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"
14 #include "SkPaint.h" 15 #include "SkPaint.h"
15 #include "SkRTConf.h" 16 #include "SkRTConf.h"
16 #include "SkStream.h" 17 #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
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 }
OLDNEW
« no previous file with comments | « tests/PathOpsExtendedTest.h ('k') | tests/skia_test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698