OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'icu.gypi', | 7 'icu.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'use_system_icu%': 0, | 10 'use_system_icu%': 0, |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 '-frtti', | 292 '-frtti', |
293 ], | 293 ], |
294 'xcode_settings': { | 294 'xcode_settings': { |
295 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti | 295 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti |
296 }, | 296 }, |
297 'msvs_settings': { | 297 'msvs_settings': { |
298 'VCCLCompilerTool': { | 298 'VCCLCompilerTool': { |
299 'RuntimeTypeInfo': 'true', | 299 'RuntimeTypeInfo': 'true', |
300 }, | 300 }, |
301 }, | 301 }, |
| 302 'all_dependent_settings': { |
| 303 'msvs_settings': { |
| 304 'VCLinkerTool': { |
| 305 'AdditionalDependencies': [ |
| 306 'advapi32.lib', |
| 307 ], |
| 308 }, |
| 309 }, |
| 310 }, |
302 'conditions': [ | 311 'conditions': [ |
303 [ 'use_system_icu==1 and want_separate_host_toolset==1', { | 312 [ 'use_system_icu==1 and want_separate_host_toolset==1', { |
304 'toolsets': ['host'], | 313 'toolsets': ['host'], |
305 }], | 314 }], |
306 [ 'use_system_icu==0 and want_separate_host_toolset==1', { | 315 [ 'use_system_icu==0 and want_separate_host_toolset==1', { |
307 'toolsets': ['host', 'target'], | 316 'toolsets': ['host', 'target'], |
308 }], | 317 }], |
309 [ 'use_system_icu==0 and want_separate_host_toolset==0', { | 318 [ 'use_system_icu==0 and want_separate_host_toolset==0', { |
310 'toolsets': ['target'], | 319 'toolsets': ['target'], |
311 }], | 320 }], |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 }, | 611 }, |
603 'includes': [ | 612 'includes': [ |
604 '../../build/shim_headers.gypi', | 613 '../../build/shim_headers.gypi', |
605 ], | 614 ], |
606 'toolsets': ['target'], | 615 'toolsets': ['target'], |
607 }, | 616 }, |
608 ], # targets | 617 ], # targets |
609 }], | 618 }], |
610 ], # conditions | 619 ], # conditions |
611 } | 620 } |
OLD | NEW |