Index: tools/Resources.cpp |
diff --git a/tools/Resources.cpp b/tools/Resources.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..756d14ad3acadf235bd5c2673168b5ab4e197919 |
--- /dev/null |
+++ b/tools/Resources.cpp |
@@ -0,0 +1,17 @@ |
+/* |
+ * Copyright 2014 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#include "Resources.h" |
+ |
+#include "SkCommandLineFlags.h" |
+#include "SkOSFile.h" |
+ |
+DEFINE_string2(resourcePath, i, "resources", "Directory with test resources: images, fonts, etc."); |
+ |
+SkString GetResourcePath(const char* resource) { |
+ return SkOSPath::SkPathJoin(FLAGS_resourcePath[0], resource); |
+} |