| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 '../ipc/ipc.gyp:ipc', | 61 '../ipc/ipc.gyp:ipc', |
| 62 '../net/net.gyp:net', | 62 '../net/net.gyp:net', |
| 63 '../third_party/icu/icu.gyp:icuuc', | 63 '../third_party/icu/icu.gyp:icuuc', |
| 64 '../third_party/re2/re2.gyp:re2', | 64 '../third_party/re2/re2.gyp:re2', |
| 65 '../ui/base/ui_base.gyp:ui_base', | 65 '../ui/base/ui_base.gyp:ui_base', |
| 66 '../ui/gfx/gfx.gyp:gfx_geometry', | 66 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 67 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 67 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
| 68 '../url/url.gyp:url_lib', | 68 '../url/url.gyp:url_lib', |
| 69 '../third_party/boringssl/boringssl.gyp:boringssl', | 69 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 70 '../third_party/libxml/libxml.gyp:libxml', | 70 '../third_party/libxml/libxml.gyp:libxml', |
| 71 '../url/ipc/url_ipc.gyp:url_ipc', | |
| 72 'common/api/api.gyp:extensions_api', | 71 'common/api/api.gyp:extensions_api', |
| 73 'extensions_resources.gyp:extensions_resources', | 72 'extensions_resources.gyp:extensions_resources', |
| 74 'extensions_strings.gyp:extensions_strings', | 73 'extensions_strings.gyp:extensions_strings', |
| 75 'extensions_common_constants', | 74 'extensions_common_constants', |
| 76 'extensions_common_mojo', | 75 'extensions_common_mojo', |
| 77 ], | 76 ], |
| 78 'include_dirs': [ | 77 'include_dirs': [ |
| 79 '..', | 78 '..', |
| 80 '<(INTERMEDIATE_DIR)', | 79 '<(INTERMEDIATE_DIR)', |
| 81 ], | 80 ], |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 ], | 192 ], |
| 194 }], | 193 }], |
| 195 ], | 194 ], |
| 196 # Disable c4267 warnings until we fix size_t to int truncations. | 195 # Disable c4267 warnings until we fix size_t to int truncations. |
| 197 'msvs_disabled_warnings': [ 4267, ], | 196 'msvs_disabled_warnings': [ 4267, ], |
| 198 }, | 197 }, |
| 199 { | 198 { |
| 200 # GN version: //extensions/renderer | 199 # GN version: //extensions/renderer |
| 201 'target_name': 'extensions_renderer', | 200 'target_name': 'extensions_renderer', |
| 202 'type': 'static_library', | 201 'type': 'static_library', |
| 203 | |
| 204 'defines': [ 'URL_PARAM_TRAITS_FIX' ], | |
| 205 | |
| 206 'dependencies': [ | 202 'dependencies': [ |
| 207 'extensions_resources.gyp:extensions_resources', | 203 'extensions_resources.gyp:extensions_resources', |
| 208 '../components/components.gyp:guest_view_renderer', | 204 '../components/components.gyp:guest_view_renderer', |
| 209 '../content/content.gyp:content_common', | |
| 210 '../content/content.gyp:content_resources', | 205 '../content/content.gyp:content_resources', |
| 211 '../gin/gin.gyp:gin', | 206 '../gin/gin.gyp:gin', |
| 212 '../mojo/mojo_public.gyp:mojo_js_bindings', | 207 '../mojo/mojo_public.gyp:mojo_js_bindings', |
| 213 '../third_party/WebKit/public/blink.gyp:blink', | 208 '../third_party/WebKit/public/blink.gyp:blink', |
| 214 ], | 209 ], |
| 215 'include_dirs': [ | 210 'include_dirs': [ |
| 216 '..', | 211 '..', |
| 217 ], | 212 ], |
| 218 'sources': [ | 213 'sources': [ |
| 219 '<@(extensions_renderer_sources)', | 214 '<@(extensions_renderer_sources)', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', | 321 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', |
| 327 ], | 322 ], |
| 328 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 323 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
| 329 }, | 324 }, |
| 330 'includes': [ '../build/repack_action.gypi' ], | 325 'includes': [ '../build/repack_action.gypi' ], |
| 331 }, | 326 }, |
| 332 ], | 327 ], |
| 333 }, | 328 }, |
| 334 ] | 329 ] |
| 335 } | 330 } |
| OLD | NEW |