| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 }, | 119 }, |
| 120 { | 120 { |
| 121 # GN version: //extensions/browser | 121 # GN version: //extensions/browser |
| 122 'target_name': 'extensions_browser', | 122 'target_name': 'extensions_browser', |
| 123 'type': 'static_library', | 123 'type': 'static_library', |
| 124 'dependencies': [ | 124 'dependencies': [ |
| 125 '../base/base.gyp:base', | 125 '../base/base.gyp:base', |
| 126 '../base/base.gyp:base_prefs', | 126 '../base/base.gyp:base_prefs', |
| 127 '../components/components.gyp:browsing_data', | 127 '../components/components.gyp:browsing_data', |
| 128 '../components/components.gyp:device_event_log_component', | 128 '../components/components.gyp:device_event_log_component', |
| 129 '../components/components.gyp:guest_view', |
| 129 '../components/components.gyp:keyed_service_content', | 130 '../components/components.gyp:keyed_service_content', |
| 130 '../components/components.gyp:keyed_service_core', | 131 '../components/components.gyp:keyed_service_core', |
| 131 '../components/components.gyp:onc_component', | 132 '../components/components.gyp:onc_component', |
| 132 '../components/components.gyp:pref_registry', | 133 '../components/components.gyp:pref_registry', |
| 133 '../components/components.gyp:sessions_content', | 134 '../components/components.gyp:sessions_content', |
| 134 '../components/components.gyp:storage_monitor', | 135 '../components/components.gyp:storage_monitor', |
| 135 '../components/components.gyp:ui_zoom', | 136 '../components/components.gyp:ui_zoom', |
| 136 '../components/components.gyp:variations', | 137 '../components/components.gyp:variations', |
| 137 '../components/components.gyp:web_cache_browser', | 138 '../components/components.gyp:web_cache_browser', |
| 138 '../components/components.gyp:web_modal', | 139 '../components/components.gyp:web_modal', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 ], | 201 ], |
| 201 # Disable c4267 warnings until we fix size_t to int truncations. | 202 # Disable c4267 warnings until we fix size_t to int truncations. |
| 202 'msvs_disabled_warnings': [ 4267, ], | 203 'msvs_disabled_warnings': [ 4267, ], |
| 203 }, | 204 }, |
| 204 { | 205 { |
| 205 # GN version: //extensions/renderer | 206 # GN version: //extensions/renderer |
| 206 'target_name': 'extensions_renderer', | 207 'target_name': 'extensions_renderer', |
| 207 'type': 'static_library', | 208 'type': 'static_library', |
| 208 'dependencies': [ | 209 'dependencies': [ |
| 209 'extensions_resources.gyp:extensions_resources', | 210 'extensions_resources.gyp:extensions_resources', |
| 211 '../components/components.gyp:guest_view', |
| 210 '../content/content.gyp:content_resources', | 212 '../content/content.gyp:content_resources', |
| 211 '../gin/gin.gyp:gin', | 213 '../gin/gin.gyp:gin', |
| 212 '../third_party/WebKit/public/blink.gyp:blink', | 214 '../third_party/WebKit/public/blink.gyp:blink', |
| 213 '../third_party/mojo/mojo_public.gyp:mojo_js_bindings', | 215 '../third_party/mojo/mojo_public.gyp:mojo_js_bindings', |
| 214 ], | 216 ], |
| 215 'include_dirs': [ | 217 'include_dirs': [ |
| 216 '..', | 218 '..', |
| 217 ], | 219 ], |
| 218 'sources': [ | 220 'sources': [ |
| 219 '<@(extensions_renderer_sources)', | 221 '<@(extensions_renderer_sources)', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', | 309 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', |
| 308 ], | 310 ], |
| 309 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 311 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
| 310 }, | 312 }, |
| 311 'includes': [ '../build/repack_action.gypi' ], | 313 'includes': [ '../build/repack_action.gypi' ], |
| 312 }, | 314 }, |
| 313 ], | 315 ], |
| 314 }, | 316 }, |
| 315 ] | 317 ] |
| 316 } | 318 } |
| OLD | NEW |