| 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 "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 "SkCodec.h" |
| 16 #include "SkCommonFlags.h" | 17 #include "SkCommonFlags.h" |
| 17 #include "SkFontMgr.h" | 18 #include "SkFontMgr.h" |
| 18 #include "SkForceLinking.h" | 19 #include "SkForceLinking.h" |
| 19 #include "SkGraphics.h" | 20 #include "SkGraphics.h" |
| 20 #include "SkMD5.h" | 21 #include "SkMD5.h" |
| 21 #include "SkMutex.h" | 22 #include "SkMutex.h" |
| 22 #include "SkOSFile.h" | 23 #include "SkOSFile.h" |
| 23 #include "SkTHash.h" | 24 #include "SkTHash.h" |
| 24 #include "SkTaskGroup.h" | 25 #include "SkTaskGroup.h" |
| 25 #include "SkThreadUtils.h" | 26 #include "SkThreadUtils.h" |
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 } | 849 } |
| 849 return 0; | 850 return 0; |
| 850 } | 851 } |
| 851 | 852 |
| 852 #if !defined(SK_BUILD_FOR_IOS) | 853 #if !defined(SK_BUILD_FOR_IOS) |
| 853 int main(int argc, char** argv) { | 854 int main(int argc, char** argv) { |
| 854 SkCommandLineFlags::Parse(argc, argv); | 855 SkCommandLineFlags::Parse(argc, argv); |
| 855 return dm_main(); | 856 return dm_main(); |
| 856 } | 857 } |
| 857 #endif | 858 #endif |
| OLD | NEW |