| OLD | NEW |
| 1 // Main binary for DM. | 1 // Main binary for DM. |
| 2 // For a high-level overview, please see dm/README. | 2 // For a high-level overview, please see dm/README. |
| 3 // |
| 3 | 4 |
| 4 #include "CrashHandler.h" | 5 #include "CrashHandler.h" |
| 5 #include "SkCommandLineFlags.h" | 6 #include "SkCommandLineFlags.h" |
| 6 #include "SkForceLinking.h" | 7 #include "SkForceLinking.h" |
| 7 #include "SkGraphics.h" | 8 #include "SkGraphics.h" |
| 8 #include "SkPicture.h" | 9 #include "SkPicture.h" |
| 9 #include "SkString.h" | 10 #include "SkString.h" |
| 10 #include "Test.h" | 11 #include "Test.h" |
| 11 #include "gm.h" | 12 #include "gm.h" |
| 12 | 13 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 reporter.getFailures(&failures); | 259 reporter.getFailures(&failures); |
| 259 report_failures(failures); | 260 report_failures(failures); |
| 260 return failures.count() > 0; | 261 return failures.count() > 0; |
| 261 } | 262 } |
| 262 | 263 |
| 263 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) | 264 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) |
| 264 int main(int argc, char** argv) { | 265 int main(int argc, char** argv) { |
| 265 return tool_main(argc, argv); | 266 return tool_main(argc, argv); |
| 266 } | 267 } |
| 267 #endif | 268 #endif |
| OLD | NEW |