Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: gyp/json.gyp

Issue 1636563002: Initial support for turning Skia draws into a JSON document and vice versa. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed some build issues Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gyp/skia_lib.gyp » ('j') | src/json/SkJSONCanvas.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/json.gyp
diff --git a/gyp/json.gyp b/gyp/json.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..6507f46221310e8d6eab64b2cf8c3e99c0c64b5e
--- /dev/null
+++ b/gyp/json.gyp
@@ -0,0 +1,27 @@
+# Copyright 2015 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'json',
joshualitt 2016/01/25 19:41:04 hmm, this name could be a bit clearer json_canvas?
ethannicholas 2016/01/25 20:52:19 That was my reasoning. I'm not sure from your mess
+ 'product_name': 'skia_json',
+ 'type': 'static_library',
+ 'standalone_static_library': 1,
+ 'dependencies': [
+ 'core.gyp:core',
+ 'jsoncpp.gyp:jsoncpp',
joshualitt 2016/01/25 19:41:04 do you actually use jsoncpp?
ethannicholas 2016/01/25 20:52:19 Yes, it's the parser in SkJSONRenderer.
+ ],
+ 'include_dirs': [
+ '../include/json',
+ '../include/utils',
+ '../src/core',
+ ],
+ 'sources': [
+ '<(skia_src_path)/json/SkJSONCanvas.cpp',
+ '<(skia_src_path)/json/SkJSONRenderer.cpp',
+ ],
+ },
+ ],
+}
« no previous file with comments | « no previous file | gyp/skia_lib.gyp » ('j') | src/json/SkJSONCanvas.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698