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