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

Side by Side Diff: third_party/icu38/icu38.scons

Issue 7806: Rename SConscript to icu38.scons. Add a using_icu38.scons (like... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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 | « third_party/icu38/SConscript ('k') | third_party/icu38/using_icu38.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 # Variables to control what does or doesn't get built here: 5 # Variables to control what does or doesn't get built here:
6 # 6 #
7 # CombinedLib 7 # CombinedLib
8 # When True, builds a combined libicu.a (or icu.lib) containing 8 # When True, builds a combined libicu.a (or icu.lib) containing
9 # the common, i18n, stubdata and toolutil parts of ICU. When 9 # the common, i18n, stubdata and toolutil parts of ICU. When
10 # False, builds those as separate libraries. 10 # False, builds those as separate libraries.
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 444
445 icu_data = None 445 icu_data = None
446 446
447 # The ICU library isn't useful without the data properly installed. 447 # The ICU library isn't useful without the data properly installed.
448 if env['PLATFORM'] == 'win32': 448 if env['PLATFORM'] == 'win32':
449 icu_data = env.Install('$OBJ_ROOT', 'icudt38.dll') 449 icu_data = env.Install('$OBJ_ROOT', 'icudt38.dll')
450 else: 450 else:
451 icu_data = env.Install('$OBJ_ROOT', 'source/data/in/icudt38l.dat') 451 icu_data = env.Install('$OBJ_ROOT', 'source/data/in/icudt38l.dat')
452 452
453 env.Requires(icu_lib, icu_data) 453 env.Requires(icu_lib, icu_data)
OLDNEW
« no previous file with comments | « third_party/icu38/SConscript ('k') | third_party/icu38/using_icu38.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698