| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 <ctype.h> | 8 #include <ctype.h> |
| 9 | 9 |
| 10 #include "nanobench.h" | 10 #include "nanobench.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "SkAndroidCodec.h" | 27 #include "SkAndroidCodec.h" |
| 28 #include "SkBitmapRegionDecoder.h" | 28 #include "SkBitmapRegionDecoder.h" |
| 29 #include "SkBBoxHierarchy.h" | 29 #include "SkBBoxHierarchy.h" |
| 30 #include "SkCanvas.h" | 30 #include "SkCanvas.h" |
| 31 #include "SkCodec.h" | 31 #include "SkCodec.h" |
| 32 #include "SkCommonFlags.h" | 32 #include "SkCommonFlags.h" |
| 33 #include "SkCommonFlagsConfig.h" | 33 #include "SkCommonFlagsConfig.h" |
| 34 #include "SkData.h" | 34 #include "SkData.h" |
| 35 #include "SkForceLinking.h" | 35 #include "SkForceLinking.h" |
| 36 #include "SkGraphics.h" | 36 #include "SkGraphics.h" |
| 37 #include "SkLeanWindows.h" |
| 37 #include "SkOSFile.h" | 38 #include "SkOSFile.h" |
| 38 #include "SkPictureRecorder.h" | 39 #include "SkPictureRecorder.h" |
| 39 #include "SkPictureUtils.h" | 40 #include "SkPictureUtils.h" |
| 40 #include "SkString.h" | 41 #include "SkString.h" |
| 41 #include "SkSurface.h" | 42 #include "SkSurface.h" |
| 42 #include "SkTaskGroup.h" | 43 #include "SkTaskGroup.h" |
| 43 #include "SkThreadUtils.h" | 44 #include "SkThreadUtils.h" |
| 44 #include "ThermalManager.h" | 45 #include "ThermalManager.h" |
| 45 | 46 |
| 46 #include <stdlib.h> | 47 #include <stdlib.h> |
| (...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1286 | 1287 |
| 1287 return 0; | 1288 return 0; |
| 1288 } | 1289 } |
| 1289 | 1290 |
| 1290 #if !defined SK_BUILD_FOR_IOS | 1291 #if !defined SK_BUILD_FOR_IOS |
| 1291 int main(int argc, char** argv) { | 1292 int main(int argc, char** argv) { |
| 1292 SkCommandLineFlags::Parse(argc, argv); | 1293 SkCommandLineFlags::Parse(argc, argv); |
| 1293 return nanobench_main(); | 1294 return nanobench_main(); |
| 1294 } | 1295 } |
| 1295 #endif | 1296 #endif |
| OLD | NEW |