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

Side by Side 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: Catching up with WebstoreInstallHelper changes 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 unified diff | Download patch
« no previous file with comments | « components/safe_json_parser.gypi ('k') | components/safe_json_parser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # GYP version: components/safe_json_parser.gypi:safe_json_parser
6 static_library("safe_json_parser") {
7 sources = [
8 "safe_json_parser.cc",
9 "safe_json_parser.h",
10 ]
11
12 defines = [ "SAFE_JSON_PARSER_IMPLEMENTATION" ]
13
14 deps = [
15 ":safe_json_parser_message_filter",
16 "//base",
17 "//components/strings",
18 "//content/public/browser",
19 "//ui/base",
20 ]
21 }
22
23 static_library("safe_json_parser_message_filter") {
24 sources = [
25 "safe_json_parser_message_filter.cc",
26 "safe_json_parser_message_filter.h",
27 "safe_json_parser_messages.cc",
28 "safe_json_parser_messages.h",
29 ]
30
31 deps = [
32 "//base",
33 "//content/public/browser",
34 "//ipc",
35 ]
36 }
OLDNEW
« no previous file with comments | « components/safe_json_parser.gypi ('k') | components/safe_json_parser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698