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

Side by Side Diff: components/safe_json.gypi

Issue 1214903010: Make JSONParser a pure interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: nullptr 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/safe_json 8 # GN version: //components/safe_json
9 'target_name': 'safe_json', 9 'target_name': 'safe_json',
10 #'type': '<(component)', 10 #'type': '<(component)',
(...skipping 10 matching lines...) Expand all
21 ], 21 ],
22 'defines': [ 22 'defines': [
23 'SAFE_JSON_IMPLEMENTATION', 23 'SAFE_JSON_IMPLEMENTATION',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 'safe_json/safe_json_parser.cc', 26 'safe_json/safe_json_parser.cc',
27 'safe_json/safe_json_parser.h', 27 'safe_json/safe_json_parser.h',
28 ], 28 ],
29 }, 29 },
30 { 30 {
31 'target_name': 'safe_json_test_support',
32 'type': 'static_library',
33 'dependencies': [
34 '../base/base.gyp:base',
35 ':safe_json',
36 ],
37 'include_dirs': [
38 '..',
39 ],
40 'sources': [
41 'safe_json/testing_json_parser.cc',
42 'safe_json/testing_json_parser.h',
43 ],
44 },
45 {
31 'target_name': 'safe_json_parser_message_filter', 46 'target_name': 'safe_json_parser_message_filter',
32 'type': 'static_library', 47 'type': 'static_library',
33 'dependencies': [ 48 'dependencies': [
34 '../base/base.gyp:base', 49 '../base/base.gyp:base',
35 '../content/content.gyp:content_browser', 50 '../content/content.gyp:content_browser',
36 '../ipc/ipc.gyp:ipc', 51 '../ipc/ipc.gyp:ipc',
37 ], 52 ],
38 'include_dirs': [ 53 'include_dirs': [
39 '..', 54 '..',
40 ], 55 ],
41 'sources': [ 56 'sources': [
42 'safe_json/safe_json_parser_message_filter.cc', 57 'safe_json/safe_json_parser_message_filter.cc',
43 'safe_json/safe_json_parser_message_filter.h', 58 'safe_json/safe_json_parser_message_filter.h',
44 'safe_json/safe_json_parser_messages.cc', 59 'safe_json/safe_json_parser_messages.cc',
45 'safe_json/safe_json_parser_messages.h', 60 'safe_json/safe_json_parser_messages.h',
46 ], 61 ],
47 }, 62 },
48 ], 63 ],
49 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698