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

Unified Diff: components/safe_json_parser/BUILD.gn

Issue 1140053003: Refactoring: Moving the SafeJsonParser to its own component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Localized string, build fixes Created 5 years, 7 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_parser/BUILD.gn
diff --git a/components/safe_json_parser/BUILD.gn b/components/safe_json_parser/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..5edcadda411ff2eb7f1194e356bdf39c2ce8f229
--- /dev/null
+++ b/components/safe_json_parser/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# GYP version: components/safe_json_parser.gypi:safe_json_parser
+static_library("safe_json_parser") {
+ sources = [
+ "safe_json_parser.cc",
+ "safe_json_parser.h",
+ "safe_json_parser_export.h",
+ "safe_json_parser_message_filter.cc",
+ "safe_json_parser_message_filter.h",
+ "safe_json_parser_messages.cc",
+ "safe_json_parser_messages.h",
+ ]
+
Robert Sesek 2015/05/26 19:39:27 Does this need to define SAFE_JSON_PARSER_IMPLEMEN
Eran Messeri 2015/05/28 13:54:27 Yes, done. I reworked the BUILD.gn and safe_json_p
+ deps = [
+ "//base",
+ "//components/strings",
+ "//content/public/browser",
+ "//ipc",
+ "//ui/base",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698