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

Unified Diff: components/BUILD.gn

Issue 1203083002: Add a JSON sanitizer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN Created 5 years, 5 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/BUILD.gn
diff --git a/components/BUILD.gn b/components/BUILD.gn
index 8c4c3a7131cd5dce49fca30792275d8b49895db6..782614d3300dcdffd0ab2ac15ad1f94dd6c11252 100644
--- a/components/BUILD.gn
+++ b/components/BUILD.gn
@@ -295,6 +295,7 @@ test("components_unittests") {
"//components/offline_pages:unit_tests",
"//components/omnibox:unit_tests",
"//components/packed_ct_ev_whitelist:unit_tests",
+ "//components/safe_json:unit_tests",
"//components/undo:unit_tests",
"//components/update_client:unit_tests",
"//components/variations:unit_tests",
@@ -347,7 +348,10 @@ test("components_unittests") {
}
if (!is_ios) {
- deps += [ "//components/scheduler:unit_tests" ]
+ deps += [
+ "//components/safe_json:unit_tests",
sdefresne 2015/07/10 14:01:19 I don't understand this addition. At line 298, you
Bernhard Bauer 2015/07/10 14:09:09 You're right, the tests shouldn't be run on iOS. R
+ "//components/scheduler:unit_tests",
+ ]
}
}

Powered by Google App Engine
This is Rietveld 408576698