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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
839 } | 839 } |
840 if (gPending > 0) { | 840 if (gPending > 0) { |
841 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please
file a bug.\n"); | 841 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please
file a bug.\n"); |
842 return 1; | 842 return 1; |
843 } | 843 } |
844 return 0; | 844 return 0; |
845 } | 845 } |
846 | 846 |
847 #if !defined(SK_BUILD_FOR_IOS) | 847 #if !defined(SK_BUILD_FOR_IOS) |
848 int main(int argc, char** argv) { | 848 int main(int argc, char** argv) { |
849 SkASSERT(false); | |
850 SkCommandLineFlags::Parse(argc, argv); | 849 SkCommandLineFlags::Parse(argc, argv); |
851 return dm_main(); | 850 return dm_main(); |
852 } | 851 } |
853 #endif | 852 #endif |
OLD | NEW |