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

Side by Side Diff: dm/DM.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 | « bench/RefCntBench.cpp ('k') | dm/DMJsonWriter.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 2013 Google Inc. 2 * Copyright 2013 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 "DMJsonWriter.h" 9 #include "DMJsonWriter.h"
10 #include "DMSrcSink.h" 10 #include "DMSrcSink.h"
11 #include "DMSrcSinkAndroid.h" 11 #include "DMSrcSinkAndroid.h"
12 #include "OverwriteLine.h" 12 #include "OverwriteLine.h"
13 #include "ProcStats.h" 13 #include "ProcStats.h"
14 #include "SkBBHFactory.h" 14 #include "SkBBHFactory.h"
15 #include "SkChecksum.h" 15 #include "SkChecksum.h"
16 #include "SkCommonFlags.h" 16 #include "SkCommonFlags.h"
17 #include "SkFontMgr.h" 17 #include "SkFontMgr.h"
18 #include "SkForceLinking.h" 18 #include "SkForceLinking.h"
19 #include "SkGraphics.h" 19 #include "SkGraphics.h"
20 #include "SkMD5.h" 20 #include "SkMD5.h"
21 #include "SkMutex.h"
21 #include "SkOSFile.h" 22 #include "SkOSFile.h"
22 #include "SkTHash.h" 23 #include "SkTHash.h"
23 #include "SkTaskGroup.h" 24 #include "SkTaskGroup.h"
24 #include "SkThreadUtils.h" 25 #include "SkThreadUtils.h"
25 #include "Test.h" 26 #include "Test.h"
26 #include "Timer.h" 27 #include "Timer.h"
27 #include "sk_tool_utils.h" 28 #include "sk_tool_utils.h"
28 29
29 DEFINE_string(src, "tests gm skp image", "Source types to test."); 30 DEFINE_string(src, "tests gm skp image", "Source types to test.");
30 DEFINE_bool(nameByHash, false, 31 DEFINE_bool(nameByHash, false,
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 } 811 }
811 return 0; 812 return 0;
812 } 813 }
813 814
814 #if !defined(SK_BUILD_FOR_IOS) 815 #if !defined(SK_BUILD_FOR_IOS)
815 int main(int argc, char** argv) { 816 int main(int argc, char** argv) {
816 SkCommandLineFlags::Parse(argc, argv); 817 SkCommandLineFlags::Parse(argc, argv);
817 return dm_main(); 818 return dm_main();
818 } 819 }
819 #endif 820 #endif
OLDNEW
« no previous file with comments | « bench/RefCntBench.cpp ('k') | dm/DMJsonWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698