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" |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 SkDebugf("%d failures\n", gFailures.count()); | 650 SkDebugf("%d failures\n", gFailures.count()); |
651 return 1; | 651 return 1; |
652 } | 652 } |
653 if (gPending > 0) { | 653 if (gPending > 0) { |
654 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please
file a bug.\n"); | 654 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please
file a bug.\n"); |
655 return 1; | 655 return 1; |
656 } | 656 } |
657 return 0; | 657 return 0; |
658 } | 658 } |
659 | 659 |
660 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) | 660 #if !defined(SK_BUILD_FOR_IOS) |
661 int main(int argc, char** argv) { | 661 int main(int argc, char** argv) { |
662 SkCommandLineFlags::Parse(argc, argv); | 662 SkCommandLineFlags::Parse(argc, argv); |
663 return dm_main(); | 663 return dm_main(); |
664 } | 664 } |
665 #endif | 665 #endif |
OLD | NEW |