Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: icu.gyp

Issue 341653003: Add linker dependency on advapi32.lib for icuuc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu52/
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698