Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2014 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 | |
| 8 | |
| 9 #include "CrashHandler.h" | |
| 10 #include "SkCommandLineFlags.h" | |
| 11 #include "nanobench.h" | |
| 12 | |
| 13 int main(int argc, char * const argv[]) { | |
| 14 SetupCrashHandler(); | |
| 15 SkCommandLineFlags::Parse(argc, const_cast<char**>(argv)); | |
| 16 return nanobench_main(); | |
| 17 | |
| 18 } | |
| OLD | NEW |