| OLD | NEW |
| 1 #include "CrashHandler.h" | 1 #include "CrashHandler.h" |
| 2 // #include "OverwriteLine.h" | 2 // #include "OverwriteLine.h" |
| 3 #include "Resources.h" | 3 #include "Resources.h" |
| 4 #include "SkBitmap.h" | 4 #include "SkBitmap.h" |
| 5 #include "SkCanvas.h" | 5 #include "SkCanvas.h" |
| 6 #include "SkColor.h" | 6 #include "SkColor.h" |
| 7 #include "SkColorPriv.h" | 7 #include "SkColorPriv.h" |
| 8 #include "SkCommandLineFlags.h" | 8 #include "SkCommandLineFlags.h" |
| 9 #include "SkDevice.h" | 9 #include "SkDevice.h" |
| 10 #include "SkForceLinking.h" | 10 #include "SkForceLinking.h" |
| 11 #include "SkGraphics.h" | 11 #include "SkGraphics.h" |
| 12 #include "SkImageDecoder.h" | 12 #include "SkImageDecoder.h" |
| 13 #include "SkImageEncoder.h" | 13 #include "SkImageEncoder.h" |
| 14 #include "SkOSFile.h" | 14 #include "SkOSFile.h" |
| 15 #include "SkPathOpsDebug.h" | 15 #include "SkPathOpsDebug.h" |
| 16 #include "SkPicture.h" | 16 #include "SkPicture.h" |
| 17 #include "SkRTConf.h" | 17 #include "SkRTConf.h" |
| 18 #include "SkRunnable.h" |
| 18 #include "SkTSort.h" | 19 #include "SkTSort.h" |
| 19 #include "SkStream.h" | 20 #include "SkStream.h" |
| 20 #include "SkString.h" | 21 #include "SkString.h" |
| 21 #include "SkTArray.h" | 22 #include "SkTArray.h" |
| 22 #include "SkTDArray.h" | 23 #include "SkTDArray.h" |
| 23 #include "SkTaskGroup.h" | 24 #include "SkTaskGroup.h" |
| 24 #include "SkTemplates.h" | 25 #include "SkTemplates.h" |
| 25 #include "SkTime.h" | 26 #include "SkTime.h" |
| 26 | 27 |
| 27 __SK_FORCE_IMAGE_DECODER_LINKING; | 28 __SK_FORCE_IMAGE_DECODER_LINKING; |
| (...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 } | 1097 } |
| 1097 SkGraphics::Term(); | 1098 SkGraphics::Term(); |
| 1098 return 0; | 1099 return 0; |
| 1099 } | 1100 } |
| 1100 | 1101 |
| 1101 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) | 1102 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) |
| 1102 int main(int argc, char * const argv[]) { | 1103 int main(int argc, char * const argv[]) { |
| 1103 return tool_main(argc, (char**) argv); | 1104 return tool_main(argc, (char**) argv); |
| 1104 } | 1105 } |
| 1105 #endif | 1106 #endif |
| OLD | NEW |