kkinnunen | c092d3b | 2014-11-13 05:00:57 -0800 | [diff] [blame] | 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 | } |