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

Unified Diff: components/safe_json/BUILD.gn

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
« no previous file with comments | « components/safe_json.gypi ('k') | components/safe_json/safe_json_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/safe_json/BUILD.gn
diff --git a/components/safe_json/BUILD.gn b/components/safe_json/BUILD.gn
index 9238befcb33341cc52a355b4d4e3260266acf2c5..09ce9ad26985f31b062eee2443fd8218715038e9 100644
--- a/components/safe_json/BUILD.gn
+++ b/components/safe_json/BUILD.gn
@@ -7,6 +7,8 @@ static_library("safe_json") {
sources = [
"safe_json_parser.cc",
"safe_json_parser.h",
+ "safe_json_parser_impl.cc",
+ "safe_json_parser_impl.h",
]
defines = [ "SAFE_JSON_IMPLEMENTATION" ]
brettw 2015/07/07 22:17:21 This does nothing and should be removed. GYP also.
@@ -20,6 +22,21 @@ static_library("safe_json") {
]
}
+# GYP version: components/safe_json.gypi:safe_json_test_support
+source_set("test_support") {
+ testonly = true
+ sources = [
+ "testing_json_parser.cc",
+ "testing_json_parser.h",
+ ]
+
+ deps = [
+ ":safe_json",
+ "//base",
+ ]
+}
+
+# GYP version: components/safe_json.gypi:safe_json_parser_message_filter
static_library("safe_json_parser_message_filter") {
brettw 2015/07/07 22:17:21 source_set
sources = [
"safe_json_parser_message_filter.cc",
« no previous file with comments | « components/safe_json.gypi ('k') | components/safe_json/safe_json_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698