2014-07-22 17:15:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SK_COMMON_FLAGS_H
|
|
|
|
#define SK_COMMON_FLAGS_H
|
|
|
|
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
|
|
|
|
|
|
DECLARE_string(config);
|
|
|
|
DECLARE_bool(cpu);
|
|
|
|
DECLARE_bool(dryRun);
|
|
|
|
DECLARE_bool(gpu);
|
|
|
|
DECLARE_string(gpuAPI);
|
|
|
|
DECLARE_bool(leaks);
|
|
|
|
DECLARE_string(match);
|
|
|
|
DECLARE_bool(quiet);
|
|
|
|
DECLARE_bool(resetGpuContext);
|
2014-07-28 20:48:36 +00:00
|
|
|
DECLARE_bool(abandonGpuContext);
|
2014-07-22 17:15:34 +00:00
|
|
|
DECLARE_bool(single);
|
2014-08-01 14:46:52 +00:00
|
|
|
DECLARE_string(skps);
|
2014-07-22 17:15:34 +00:00
|
|
|
DECLARE_int32(threads);
|
|
|
|
DECLARE_string(resourcePath);
|
|
|
|
DECLARE_bool(verbose);
|
|
|
|
DECLARE_bool(veryVerbose);
|
|
|
|
|
|
|
|
#endif
|