OLD | NEW |
| (Empty) |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 import os | |
6 | |
7 Import('env') | |
8 | |
9 env = env.Clone() | |
10 | |
11 grd_files = [ | |
12 '$CHROME_SRC_DIR/chrome/app/generated_resources.grd', | |
13 '$CHROME_SRC_DIR/chrome/app/chromium_strings.grd', | |
14 '$CHROME_SRC_DIR/chrome/app/google_chrome_strings.grd', | |
15 '$CHROME_SRC_DIR/chrome/app/resources/locale_settings.grd', | |
16 ] | |
17 | |
18 for grd_file in grd_files: | |
19 # The fake target gets replaced with real targets when the GRIT Builder | |
20 # runs. | |
21 generated = env.GRIT( | |
22 '$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file), | |
23 grd_file) | |
24 | |
25 languages = [ 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | |
26 'en-US', 'es', 'es-419', 'et', 'fi', 'fil', 'fr', 'gu', 'he', 'hi', 'hr', | |
27 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', 'ml', 'mr', 'nl', 'nb', | |
28 'or', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'ta', | |
29 'te', 'th', 'tr', 'uk', 'vi', 'zh-CN', 'zh-TW' ] | |
30 | |
31 # TODO(tc): Handle official build vs chromium build. Currently we assume | |
32 # chromium builds only. | |
33 for lang in languages: | |
34 lang_pak = env.Repack('$TARGET_ROOT/locales/%s.pak' % lang, | |
35 ['$TARGET_ROOT/grit_derived_sources/chromium_strings_%s.pak' % lang, | |
36 '$TARGET_ROOT/grit_derived_sources/generated_resources_%s.pak' % lang, | |
37 '$TARGET_ROOT/grit_derived_sources/locale_settings_%s.pak' % lang, | |
38 '$TARGET_ROOT/grit_derived_sources/webkit_strings_%s.pak' % lang, | |
39 ] | |
40 ) | |
41 i = env.Install('$DESTINATION_ROOT/locales', lang_pak) | |
42 | |
43 # Only require that en-US.pak is build when building chrome. | |
44 env.Requires('$DESTINATION_ROOT/chrome', '$DESTINATION_ROOT/locales/en-US.pak') | |
45 env.Requires('$DESTINATION_ROOT/unit_tests', | |
46 '$DESTINATION_ROOT/locales/en-US.pak') | |
OLD | NEW |