| OLD | NEW |
| 1 /* |
| 2 * Copyright 2013 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 |
| 1 #include "CrashHandler.h" | 8 #include "CrashHandler.h" |
| 2 #include "DMJsonWriter.h" | 9 #include "DMJsonWriter.h" |
| 3 #include "DMSrcSink.h" | 10 #include "DMSrcSink.h" |
| 4 #include "DMSrcSinkAndroid.h" | 11 #include "DMSrcSinkAndroid.h" |
| 5 #include "OverwriteLine.h" | 12 #include "OverwriteLine.h" |
| 6 #include "ProcStats.h" | 13 #include "ProcStats.h" |
| 7 #include "SkBBHFactory.h" | 14 #include "SkBBHFactory.h" |
| 8 #include "SkChecksum.h" | 15 #include "SkChecksum.h" |
| 9 #include "SkCommonFlags.h" | 16 #include "SkCommonFlags.h" |
| 10 #include "SkForceLinking.h" | 17 #include "SkForceLinking.h" |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 } | 644 } |
| 638 return 0; | 645 return 0; |
| 639 } | 646 } |
| 640 | 647 |
| 641 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) | 648 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) |
| 642 int main(int argc, char** argv) { | 649 int main(int argc, char** argv) { |
| 643 SkCommandLineFlags::Parse(argc, argv); | 650 SkCommandLineFlags::Parse(argc, argv); |
| 644 return dm_main(); | 651 return dm_main(); |
| 645 } | 652 } |
| 646 #endif | 653 #endif |
| OLD | NEW |