OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
droger
2015/06/05 11:04:00
s/(c) 2012/2015/
sdefresne
2015/06/05 11:41:00
Inlined the files.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # To use this the following variables need to be defined: | |
6 # pak_locales: string: the list of all the locales that need repacking | |
7 { | |
8 'variables': { | |
9 'repack_locales_path': 'tools/build/ios_repack_locales.py', | |
10 'repack_options%': [], | |
11 'branding_flag': [], | |
12 'repack_extra_flags%': [], | |
13 'repack_shared_dir%': '<(SHARED_INTERMEDIATE_DIR)', | |
14 'repack_output_dir%': '<(SHARED_INTERMEDIATE_DIR)/repack_ios', | |
15 }, | |
16 'inputs': [ | |
17 '<(repack_locales_path)', | |
18 '<!@pymod_do_main(ios_repack_locales -i -s <(repack_shared_dir) ' | |
19 '-x <(repack_output_dir) <(repack_extra_flags) <(branding_flag) ' | |
20 '<(pak_locales))' | |
21 ], | |
22 'outputs': [ | |
23 '<!@pymod_do_main(ios_repack_locales -o -s <(repack_shared_dir) ' | |
24 '-x <(repack_output_dir) <(repack_extra_flags) <(branding_flag) ' | |
25 '<(pak_locales))' | |
26 ], | |
27 'action': [ | |
28 'python', | |
29 '<(repack_locales_path)', | |
30 '-s<(repack_shared_dir)', | |
31 '-x<(repack_output_dir)', | |
32 '<@(repack_extra_flags)', | |
33 '<@(repack_options)', | |
34 '<@(branding_flag)', | |
35 '<@(pak_locales)', | |
36 ], | |
37 } | |
OLD | NEW |