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

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: nullptr 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/BUILD.gn
diff --git a/components/safe_json/BUILD.gn b/components/safe_json/BUILD.gn
index 9238befcb33341cc52a355b4d4e3260266acf2c5..31da258371e0a5c7c141b3d465c42b59f6221f16 100644
--- a/components/safe_json/BUILD.gn
+++ b/components/safe_json/BUILD.gn
@@ -20,6 +20,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") {
sources = [
"safe_json_parser_message_filter.cc",

Powered by Google App Engine
This is Rietveld 408576698