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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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': [ |
219 ['enable_wifi_display==1', { | 219 ['enable_wifi_display==1', { |
| 220 'dependencies': [ |
| 221 '../third_party/wds/wds.gyp:libwds', |
| 222 ], |
220 'sources': [ | 223 'sources': [ |
221 '<@(extensions_render_sources_wifi_display)', | 224 '<@(extensions_renderer_sources_wifi_display)', |
222 ], | 225 ], |
223 }], | 226 }], |
224 ], | 227 ], |
225 }, | 228 }, |
226 { | 229 { |
227 # GN version: //extensions/utility | 230 # GN version: //extensions/utility |
228 'target_name': 'extensions_utility', | 231 'target_name': 'extensions_utility', |
229 'type': 'static_library', | 232 'type': 'static_library', |
230 'dependencies': [ | 233 'dependencies': [ |
231 '../content/content.gyp:content_common', | 234 '../content/content.gyp:content_common', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', | 321 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', |
319 ], | 322 ], |
320 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', | 323 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', |
321 }, | 324 }, |
322 'includes': [ '../build/repack_action.gypi' ], | 325 'includes': [ '../build/repack_action.gypi' ], |
323 }, | 326 }, |
324 ], | 327 ], |
325 }, | 328 }, |
326 ] | 329 ] |
327 } | 330 } |
OLD | NEW |