blob: a598adc264809c3ea73a4b68346c35c66eb26a2d [file] [log] [blame]
kkinnunenc092d3b2014-11-13 05:00:57 -08001/*
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
13int main(int argc, char * const argv[]) {
14 SetupCrashHandler();
15 SkCommandLineFlags::Parse(argc, const_cast<char**>(argv));
16 return nanobench_main();
17
18}