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

Side by Side Diff: chrome/chrome_utility.gypi

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 | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_utility_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 'chrome_utility_sources': [ 7 'chrome_utility_sources': [
8 'utility/chrome_content_utility_client.cc', 8 'utility/chrome_content_utility_client.cc',
9 'utility/chrome_content_utility_client.h', 9 'utility/chrome_content_utility_client.h',
10 'utility/chrome_content_utility_ipc_whitelist.cc', 10 'utility/chrome_content_utility_ipc_whitelist.cc',
11 'utility/chrome_content_utility_ipc_whitelist.h', 11 'utility/chrome_content_utility_ipc_whitelist.h',
12 'utility/cloud_print/bitmap_image.cc', 12 'utility/cloud_print/bitmap_image.cc',
13 'utility/cloud_print/bitmap_image.h', 13 'utility/cloud_print/bitmap_image.h',
14 'utility/cloud_print/pwg_encoder.cc', 14 'utility/cloud_print/pwg_encoder.cc',
15 'utility/cloud_print/pwg_encoder.h', 15 'utility/cloud_print/pwg_encoder.h',
16 'utility/font_cache_handler_win.cc', 16 'utility/font_cache_handler_win.cc',
17 'utility/font_cache_handler_win.h', 17 'utility/font_cache_handler_win.h',
18 'utility/local_discovery/service_discovery_message_handler.cc', 18 'utility/local_discovery/service_discovery_message_handler.cc',
19 'utility/local_discovery/service_discovery_message_handler.h', 19 'utility/local_discovery/service_discovery_message_handler.h',
20 'utility/printing_handler.cc', 20 'utility/printing_handler.cc',
21 'utility/printing_handler.h', 21 'utility/printing_handler.h',
22 'utility/safe_json_parser_handler.cc',
23 'utility/safe_json_parser_handler.h',
22 'utility/shell_handler_win.cc', 24 'utility/shell_handler_win.cc',
23 'utility/shell_handler_win.h', 25 'utility/shell_handler_win.h',
24 'utility/utility_message_handler.h', 26 'utility/utility_message_handler.h',
25 ], 27 ],
26 'chrome_utility_extensions_sources': [ 28 'chrome_utility_extensions_sources': [
27 'utility/extensions/extensions_handler.cc', 29 'utility/extensions/extensions_handler.cc',
28 'utility/extensions/extensions_handler.h', 30 'utility/extensions/extensions_handler.h',
29 'utility/image_writer/disk_unmounter_mac.cc', 31 'utility/image_writer/disk_unmounter_mac.cc',
30 'utility/image_writer/disk_unmounter_mac.h', 32 'utility/image_writer/disk_unmounter_mac.h',
31 'utility/image_writer/error_messages.cc', 33 'utility/image_writer/error_messages.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 }, 96 },
95 'targets': [ 97 'targets': [
96 { 98 {
97 # GN version: //chrome/utility 99 # GN version: //chrome/utility
98 'target_name': 'utility', 100 'target_name': 'utility',
99 'type': 'static_library', 101 'type': 'static_library',
100 'variables': { 'enable_wexit_time_destructors': 1, }, 102 'variables': { 'enable_wexit_time_destructors': 1, },
101 'dependencies': [ 103 'dependencies': [
102 '../base/base.gyp:base', 104 '../base/base.gyp:base',
103 '../components/components_strings.gyp:components_strings', 105 '../components/components_strings.gyp:components_strings',
106 '../components/components.gyp:safe_json_parser_message_filter',
104 '../components/components.gyp:search_engines', 107 '../components/components.gyp:search_engines',
105 '../components/components.gyp:url_fixer', 108 '../components/components.gyp:url_fixer',
106 '../content/content.gyp:content_common', 109 '../content/content.gyp:content_common',
107 '../content/content.gyp:content_utility', 110 '../content/content.gyp:content_utility',
108 '../media/media.gyp:media', 111 '../media/media.gyp:media',
109 '../skia/skia.gyp:skia', 112 '../skia/skia.gyp:skia',
110 '../third_party/libxml/libxml.gyp:libxml', 113 '../third_party/libxml/libxml.gyp:libxml',
111 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 114 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
112 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 115 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
113 'common', 116 'common',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 'utility/local_discovery/service_discovery_message_handler.cc', 204 'utility/local_discovery/service_discovery_message_handler.cc',
202 'utility/local_discovery/service_discovery_message_handler.h', 205 'utility/local_discovery/service_discovery_message_handler.h',
203 ] 206 ]
204 }], 207 }],
205 ], 208 ],
206 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
207 'msvs_disabled_warnings': [ 4267, ], 210 'msvs_disabled_warnings': [ 4267, ],
208 }, 211 },
209 ], 212 ],
210 } 213 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_utility_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698