blob: 562ef54ad2b985e1af8e5c11d5c4a5fe8f45c27a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
Import('env')
env = env.Clone()
grd_files = [
'$CHROME_SRC_DIR/chrome/app/generated_resources.grd',
'$CHROME_SRC_DIR/chrome/app/chromium_strings.grd',
'$CHROME_SRC_DIR/chrome/app/google_chrome_strings.grd',
'$CHROME_SRC_DIR/chrome/app/resources/locale_settings.grd',
]
for grd_file in grd_files:
# The fake target gets replaced with real targets when the GRIT Builder
# runs.
generated = env.GRIT(
'$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file),
grd_file)
if env.Bit('linux'):
# TODO(tc): Generate all the locales and handle official build vs chromium
# build.
lang_pak = env.Repack('$TARGET_ROOT/locales/en-US.pak',
['$TARGET_ROOT/grit_derived_sources/generated_resources_en-US.pak',
'$TARGET_ROOT/grit_derived_sources/chromium_strings_en-US.pak',
'$TARGET_ROOT/grit_derived_sources/locale_settings_en-US.pak',
]
)
i = env.Install('$DESTINATION_ROOT/locales', lang_pak)
env.Requires('$DESTINATION_ROOT/chrome', i)
env.Requires('$DESTINATION_ROOT/unit_tests', i)
|