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

Side by Side Diff: chrome/chrome_utility.gypi

Issue 1128453004: Embed a simple Mojo shell in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
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/chrome_content_utility_process_impl.cc',
13 'utility/chrome_content_utility_process_impl.h',
12 'utility/cloud_print/bitmap_image.cc', 14 'utility/cloud_print/bitmap_image.cc',
13 'utility/cloud_print/bitmap_image.h', 15 'utility/cloud_print/bitmap_image.h',
14 'utility/cloud_print/pwg_encoder.cc', 16 'utility/cloud_print/pwg_encoder.cc',
15 'utility/cloud_print/pwg_encoder.h', 17 'utility/cloud_print/pwg_encoder.h',
16 'utility/font_cache_handler_win.cc', 18 'utility/font_cache_handler_win.cc',
17 'utility/font_cache_handler_win.h', 19 'utility/font_cache_handler_win.h',
18 'utility/local_discovery/service_discovery_message_handler.cc', 20 'utility/local_discovery/service_discovery_message_handler.cc',
19 'utility/local_discovery/service_discovery_message_handler.h', 21 'utility/local_discovery/service_discovery_message_handler.h',
20 'utility/printing_handler.cc', 22 'utility/printing_handler.cc',
21 'utility/printing_handler.h', 23 'utility/printing_handler.h',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
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',
104 '../components/components.gyp:search_engines', 106 '../components/components.gyp:search_engines',
105 '../components/components.gyp:url_fixer', 107 '../components/components.gyp:url_fixer',
106 '../content/content.gyp:content_common', 108 '../content/content.gyp:content_common',
109 '../content/content_common_mojo_bindings.gyp:content_common_mojo_binding s',
107 '../content/content.gyp:content_utility', 110 '../content/content.gyp:content_utility',
108 '../media/media.gyp:media', 111 '../media/media.gyp:media',
112 '../mojo/mojo_base.gyp:mojo_common_lib',
113 '../mojo/mojo_shell.gyp:mojo_shell_lib',
109 '../skia/skia.gyp:skia', 114 '../skia/skia.gyp:skia',
110 '../third_party/libxml/libxml.gyp:libxml', 115 '../third_party/libxml/libxml.gyp:libxml',
116 '../third_party/mojo/mojo_public.gyp:mojo_application_base',
117 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
118 '../third_party/mojo/mojo_public.gyp:mojo_application_bindings_mojom',
111 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 119 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
112 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 120 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
113 'common', 121 'common',
114 ], 122 ],
115 'include_dirs': [ 123 'include_dirs': [
116 '..', 124 '..',
117 '<(grit_out_dir)', 125 '<(grit_out_dir)',
118 ], 126 ],
119 'sources': [ 127 'sources': [
120 '<@(chrome_utility_sources)', 128 '<@(chrome_utility_sources)',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'utility/local_discovery/service_discovery_message_handler.cc', 208 'utility/local_discovery/service_discovery_message_handler.cc',
201 'utility/local_discovery/service_discovery_message_handler.h', 209 'utility/local_discovery/service_discovery_message_handler.h',
202 ] 210 ]
203 }], 211 }],
204 ], 212 ],
205 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
206 'msvs_disabled_warnings': [ 4267, ], 214 'msvs_disabled_warnings': [ 4267, ],
207 }, 215 },
208 ], 216 ],
209 } 217 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698