| 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 "CrashHandler.h" | 8 #include "CrashHandler.h" |
| 9 #include "DMJsonWriter.h" | 9 #include "DMJsonWriter.h" |
| 10 #include "DMSrcSink.h" | 10 #include "DMSrcSink.h" |
| 11 #include "DMSrcSinkAndroid.h" | 11 #include "DMSrcSinkAndroid.h" |
| 12 #include "ProcStats.h" | 12 #include "ProcStats.h" |
| 13 #include "Resources.h" | 13 #include "Resources.h" |
| 14 #include "SkBBHFactory.h" | 14 #include "SkBBHFactory.h" |
| 15 #include "SkChecksum.h" | 15 #include "SkChecksum.h" |
| 16 #include "SkCodec.h" | 16 #include "SkCodec.h" |
| 17 #include "SkColorPriv.h" | 17 #include "SkColorPriv.h" |
| 18 #include "SkColorSpace.h" | 18 #include "SkColorSpace.h" |
| 19 #include "SkCommonFlags.h" | 19 #include "SkCommonFlags.h" |
| 20 #include "SkCommonFlagsConfig.h" | 20 #include "SkCommonFlagsConfig.h" |
| 21 #include "SkData.h" | 21 #include "SkData.h" |
| 22 #include "SkFontMgr.h" | 22 #include "SkFontMgr.h" |
| 23 #include "SkGraphics.h" | 23 #include "SkGraphics.h" |
| 24 #include "SkHalf.h" | 24 #include "SkHalf.h" |
| 25 #include "SkLeanWindows.h" |
| 25 #include "SkMD5.h" | 26 #include "SkMD5.h" |
| 26 #include "SkMutex.h" | 27 #include "SkMutex.h" |
| 27 #include "SkOSFile.h" | 28 #include "SkOSFile.h" |
| 28 #include "SkPM4fPriv.h" | 29 #include "SkPM4fPriv.h" |
| 29 #include "SkSpinlock.h" | 30 #include "SkSpinlock.h" |
| 30 #include "SkTHash.h" | 31 #include "SkTHash.h" |
| 31 #include "SkTaskGroup.h" | 32 #include "SkTaskGroup.h" |
| 32 #include "SkThreadUtils.h" | 33 #include "SkThreadUtils.h" |
| 33 #include "Test.h" | 34 #include "Test.h" |
| 34 #include "Timer.h" | 35 #include "Timer.h" |
| (...skipping 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 #endif | 1404 #endif |
| 1404 } | 1405 } |
| 1405 } // namespace skiatest | 1406 } // namespace skiatest |
| 1406 | 1407 |
| 1407 #if !defined(SK_BUILD_FOR_IOS) | 1408 #if !defined(SK_BUILD_FOR_IOS) |
| 1408 int main(int argc, char** argv) { | 1409 int main(int argc, char** argv) { |
| 1409 SkCommandLineFlags::Parse(argc, argv); | 1410 SkCommandLineFlags::Parse(argc, argv); |
| 1410 return dm_main(); | 1411 return dm_main(); |
| 1411 } | 1412 } |
| 1412 #endif | 1413 #endif |
| OLD | NEW |