OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'includes': [ | 6 'includes': [ |
7 'extensions.gypi', | 7 'extensions.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 14 matching lines...) Expand all Loading... |
25 'msvs_disabled_warnings': [ 4267, ], | 25 'msvs_disabled_warnings': [ 4267, ], |
26 }, | 26 }, |
27 { | 27 { |
28 # GN version: //extensions/common:mojo | 28 # GN version: //extensions/common:mojo |
29 'target_name': 'extensions_common_mojo', | 29 'target_name': 'extensions_common_mojo', |
30 # The type of this target must be none. This is so that resources can | 30 # The type of this target must be none. This is so that resources can |
31 # depend upon this target for generating the js bindings files. Any | 31 # depend upon this target for generating the js bindings files. Any |
32 # generated cpp files must be listed explicitly in extensions_common | 32 # generated cpp files must be listed explicitly in extensions_common |
33 'type': 'none', | 33 'type': 'none', |
34 'includes': [ | 34 'includes': [ |
35 '../third_party/mojo/mojom_bindings_generator.gypi', | 35 '../mojo/mojom_bindings_generator.gypi', |
36 ], | 36 ], |
37 'sources': [ | 37 'sources': [ |
38 '<@(extensions_common_mojo_sources)', | 38 '<@(extensions_common_mojo_sources)', |
39 ], | 39 ], |
40 'conditions': [ | 40 'conditions': [ |
41 ['enable_wifi_display==1', { | 41 ['enable_wifi_display==1', { |
42 'sources': [ | 42 'sources': [ |
43 '<@(extensions_common_mojo_sources_wifi_display)', | 43 '<@(extensions_common_mojo_sources_wifi_display)', |
44 ], | 44 ], |
45 }], | 45 }], |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 }, | 197 }, |
198 { | 198 { |
199 # GN version: //extensions/renderer | 199 # GN version: //extensions/renderer |
200 'target_name': 'extensions_renderer', | 200 'target_name': 'extensions_renderer', |
201 'type': 'static_library', | 201 'type': 'static_library', |
202 'dependencies': [ | 202 'dependencies': [ |
203 'extensions_resources.gyp:extensions_resources', | 203 'extensions_resources.gyp:extensions_resources', |
204 '../components/components.gyp:guest_view_renderer', | 204 '../components/components.gyp:guest_view_renderer', |
205 '../content/content.gyp:content_resources', | 205 '../content/content.gyp:content_resources', |
206 '../gin/gin.gyp:gin', | 206 '../gin/gin.gyp:gin', |
| 207 '../mojo/mojo_public.gyp:mojo_js_bindings', |
207 '../third_party/WebKit/public/blink.gyp:blink', | 208 '../third_party/WebKit/public/blink.gyp:blink', |
208 '../third_party/mojo/mojo_public.gyp:mojo_js_bindings', | |
209 ], | 209 ], |
210 'include_dirs': [ | 210 'include_dirs': [ |
211 '..', | 211 '..', |
212 ], | 212 ], |
213 'sources': [ | 213 'sources': [ |
214 '<@(extensions_renderer_sources)', | 214 '<@(extensions_renderer_sources)', |
215 ], | 215 ], |
216 # Disable c4267 warnings until we fix size_t to int truncations. | 216 # Disable c4267 warnings until we fix size_t to int truncations. |
217 'msvs_disabled_warnings': [ 4267, ], | 217 'msvs_disabled_warnings': [ 4267, ], |
218 'conditions': [ | 218 'conditions': [ |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', | 318 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', |
319 ], | 319 ], |
320 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 320 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
321 }, | 321 }, |
322 'includes': [ '../build/repack_action.gypi' ], | 322 'includes': [ '../build/repack_action.gypi' ], |
323 }, | 323 }, |
324 ], | 324 ], |
325 }, | 325 }, |
326 ] | 326 ] |
327 } | 327 } |
OLD | NEW |