| 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 "SkCanvas.h" | 8 #include "SkCanvas.h" |
| 2 #include "SkCommandLineFlags.h" | 9 #include "SkCommandLineFlags.h" |
| 3 #include "SkDevice.h" | 10 #include "SkDevice.h" |
| 4 #include "SkGraphics.h" | 11 #include "SkGraphics.h" |
| 5 #include "SkImageDecoder.h" | 12 #include "SkImageDecoder.h" |
| 6 #include "SkImageEncoder.h" | 13 #include "SkImageEncoder.h" |
| 7 #include "SkOSFile.h" | 14 #include "SkOSFile.h" |
| 8 #include "SkPicture.h" | 15 #include "SkPicture.h" |
| 9 #include "SkStream.h" | 16 #include "SkStream.h" |
| 10 #include "SkTypeface.h" | 17 #include "SkTypeface.h" |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 } | 379 } |
| 373 | 380 |
| 374 return 0; | 381 return 0; |
| 375 } | 382 } |
| 376 | 383 |
| 377 #if !defined SK_BUILD_FOR_IOS | 384 #if !defined SK_BUILD_FOR_IOS |
| 378 int main(int argc, char * const argv[]) { | 385 int main(int argc, char * const argv[]) { |
| 379 return tool_main(argc, (char**) argv); | 386 return tool_main(argc, (char**) argv); |
| 380 } | 387 } |
| 381 #endif | 388 #endif |
| OLD | NEW |