OLD | NEW |
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 "OverwriteLine.h" | 9 // #include "OverwriteLine.h" |
10 #include "Resources.h" | 10 #include "Resources.h" |
11 #include "SkBitmap.h" | 11 #include "SkBitmap.h" |
12 #include "SkCanvas.h" | 12 #include "SkCanvas.h" |
13 #include "SkColor.h" | 13 #include "SkColor.h" |
14 #include "SkColorPriv.h" | 14 #include "SkColorPriv.h" |
15 #include "SkCommandLineFlags.h" | 15 #include "SkCommandLineFlags.h" |
16 #include "SkDevice.h" | |
17 #include "SkForceLinking.h" | 16 #include "SkForceLinking.h" |
18 #include "SkGraphics.h" | 17 #include "SkGraphics.h" |
19 #include "SkImageEncoder.h" | 18 #include "SkImageEncoder.h" |
20 #include "SkOSFile.h" | 19 #include "SkOSFile.h" |
21 #include "SkPathOpsDebug.h" | 20 #include "SkPathOpsDebug.h" |
22 #include "SkPicture.h" | 21 #include "SkPicture.h" |
23 #include "SkRTConf.h" | 22 #include "SkRTConf.h" |
24 #include "SkTSort.h" | 23 #include "SkTSort.h" |
25 #include "SkStream.h" | 24 #include "SkStream.h" |
26 #include "SkString.h" | 25 #include "SkString.h" |
(...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 } | 1092 } |
1094 } | 1093 } |
1095 return 0; | 1094 return 0; |
1096 } | 1095 } |
1097 | 1096 |
1098 #if !defined(SK_BUILD_FOR_IOS) | 1097 #if !defined(SK_BUILD_FOR_IOS) |
1099 int main(int argc, char * const argv[]) { | 1098 int main(int argc, char * const argv[]) { |
1100 return tool_main(argc, (char**) argv); | 1099 return tool_main(argc, (char**) argv); |
1101 } | 1100 } |
1102 #endif | 1101 #endif |
OLD | NEW |