| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 'target_name': 'extensions_renderer', | 207 'target_name': 'extensions_renderer', |
| 208 'type': 'static_library', | 208 'type': 'static_library', |
| 209 'dependencies': [ | 209 'dependencies': [ |
| 210 'extensions_resources.gyp:extensions_resources', | 210 'extensions_resources.gyp:extensions_resources', |
| 211 '../components/components.gyp:guest_view_renderer', | 211 '../components/components.gyp:guest_view_renderer', |
| 212 '../content/content.gyp:content_resources', | 212 '../content/content.gyp:content_resources', |
| 213 '../gin/gin.gyp:gin', | 213 '../gin/gin.gyp:gin', |
| 214 '../third_party/WebKit/public/blink.gyp:blink', | 214 '../third_party/WebKit/public/blink.gyp:blink', |
| 215 '../third_party/mojo/mojo_public.gyp:mojo_js_bindings', | 215 '../third_party/mojo/mojo_public.gyp:mojo_js_bindings', |
| 216 ], | 216 ], |
| 217 'defines': [ |
| 218 'V8_IMMINENT_DEPRECATION_WARNINGS', |
| 219 ], |
| 217 'include_dirs': [ | 220 'include_dirs': [ |
| 218 '..', | 221 '..', |
| 219 ], | 222 ], |
| 220 'sources': [ | 223 'sources': [ |
| 221 '<@(extensions_renderer_sources)', | 224 '<@(extensions_renderer_sources)', |
| 222 ], | 225 ], |
| 223 # Disable c4267 warnings until we fix size_t to int truncations. | 226 # Disable c4267 warnings until we fix size_t to int truncations. |
| 224 'msvs_disabled_warnings': [ 4267, ], | 227 'msvs_disabled_warnings': [ 4267, ], |
| 225 }, | 228 }, |
| 226 { | 229 { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', | 312 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', |
| 310 ], | 313 ], |
| 311 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 314 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
| 312 }, | 315 }, |
| 313 'includes': [ '../build/repack_action.gypi' ], | 316 'includes': [ '../build/repack_action.gypi' ], |
| 314 }, | 317 }, |
| 315 ], | 318 ], |
| 316 }, | 319 }, |
| 317 ] | 320 ] |
| 318 } | 321 } |
| OLD | NEW |