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

Unified Diff: components/safe_json.gypi

Issue 1214903010: Make JSONParser a pure interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: review Created 5 years, 6 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
Index: components/safe_json.gypi
diff --git a/components/safe_json.gypi b/components/safe_json.gypi
index d3c55126079b02825ef741c5ee2dab3c98e7af08..b7ab6084ec97793f9fcab7ee10ff989a6fbf163c 100644
--- a/components/safe_json.gypi
+++ b/components/safe_json.gypi
@@ -25,6 +25,23 @@
'sources': [
'safe_json/safe_json_parser.cc',
'safe_json/safe_json_parser.h',
+ 'safe_json/safe_json_parser_impl.cc',
+ 'safe_json/safe_json_parser_impl.h',
+ ],
+ },
+ {
+ 'target_name': 'safe_json_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ':safe_json',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'safe_json/testing_json_parser.cc',
+ 'safe_json/testing_json_parser.h',
],
},
{

Powered by Google App Engine
This is Rietveld 408576698