blob: 69b835800c6f80f47d39e2d712886fa85be50be4 [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);
msarett95f192d2015-02-13 09:05:41 -080018DECLARE_string(images);
caryclark17f0b6d2014-07-22 10:15:34 -070019DECLARE_bool(leaks);
20DECLARE_string(match);
21DECLARE_bool(quiet);
22DECLARE_bool(resetGpuContext);
bsalomon2354f842014-07-28 13:48:36 -070023DECLARE_bool(abandonGpuContext);
mtklein92007582014-08-01 07:46:52 -070024DECLARE_string(skps);
caryclark17f0b6d2014-07-22 10:15:34 -070025DECLARE_int32(threads);
26DECLARE_string(resourcePath);
27DECLARE_bool(verbose);
28DECLARE_bool(veryVerbose);
mtkleinb5110422014-08-07 15:20:02 -070029DECLARE_string(writePath);
caryclark17f0b6d2014-07-22 10:15:34 -070030
mtkleinea65bfa2014-09-09 07:59:46 -070031DECLARE_string(key);
32DECLARE_string(properties);
33
caryclark17f0b6d2014-07-22 10:15:34 -070034#endif