| 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 "SkBitmap.h" | 8 #include "SkBitmap.h" |
| 9 #include "SkColorPriv.h" | 9 #include "SkColorPriv.h" |
| 10 #include "SkCommandLineFlags.h" | 10 #include "SkCommandLineFlags.h" |
| 11 #include "SkData.h" | 11 #include "SkData.h" |
| 12 #include "SkForceLinking.h" | |
| 13 #include "SkGraphics.h" | 12 #include "SkGraphics.h" |
| 14 #include "SkImageDecoder.h" | 13 #include "SkImageDecoder.h" |
| 15 #include "SkImageEncoder.h" | 14 #include "SkImageEncoder.h" |
| 16 #include "SkOSFile.h" | 15 #include "SkOSFile.h" |
| 17 #include "SkRandom.h" | 16 #include "SkRandom.h" |
| 18 #include "SkStream.h" | 17 #include "SkStream.h" |
| 19 #include "SkTArray.h" | 18 #include "SkTArray.h" |
| 20 #include "SkTemplates.h" | 19 #include "SkTemplates.h" |
| 21 | 20 |
| 22 __SK_FORCE_IMAGE_DECODER_LINKING; | 21 __SK_FORCE_IMAGE_DECODER_LINKING; |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 165 } |
| 167 | 166 |
| 168 return 0; | 167 return 0; |
| 169 } | 168 } |
| 170 | 169 |
| 171 #if !defined SK_BUILD_FOR_IOS | 170 #if !defined SK_BUILD_FOR_IOS |
| 172 int main(int argc, char * const argv[]) { | 171 int main(int argc, char * const argv[]) { |
| 173 return tool_main(argc, (char**) argv); | 172 return tool_main(argc, (char**) argv); |
| 174 } | 173 } |
| 175 #endif | 174 #endif |
| OLD | NEW |