blob: 3c4910b6b4eb5022bc0a53c0a88933715fee085f [file] [log] [blame]
caryclark17f0b6d2014-07-22 10:15:34 -07001/*
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#ifndef SK_COMMON_FLAGS_H
9#define SK_COMMON_FLAGS_H
10
11#include "SkCommandLineFlags.h"
12
13DECLARE_string(config);
14DECLARE_bool(cpu);
15DECLARE_bool(dryRun);
16DECLARE_bool(gpu);
17DECLARE_string(gpuAPI);
18DECLARE_bool(leaks);
19DECLARE_string(match);
20DECLARE_bool(quiet);
21DECLARE_bool(resetGpuContext);
22DECLARE_bool(single);
23DECLARE_int32(threads);
24DECLARE_string(resourcePath);
25DECLARE_bool(verbose);
26DECLARE_bool(veryVerbose);
27
28#endif