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", |