OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2015 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 # To use this the following variables need to be defined: | |
6 # pak_locales: string: the list of all the locales that need renaming and movi ng | |
7 { | |
8 'variables': { | |
9 'rename_locales': 'tools/webview_locales_rename_paks.py', | |
10 }, | |
11 'inputs': [ | |
12 '<(rename_locales)', | |
13 '<!@pymod_do_main(webview_locales_rename_paks -i -p <(PRODUCT_DIR) -s <(SHAR ED_INTERMEDIATE_DIR) <(pak_locales))' | |
cjhopman
2015/01/28 00:37:44
Calling out to a script to determine inputs/output
Ignacio Solla
2015/02/02 17:11:32
While building the apks there are two separate ope
| |
14 ], | |
15 'outputs': [ | |
16 '<!@pymod_do_main(webview_locales_rename_paks -o -p <(PRODUCT_DIR) -s <(SHAR ED_INTERMEDIATE_DIR) <(pak_locales))' | |
17 ], | |
18 'action': [ | |
19 'python', | |
20 '<(rename_locales)', | |
21 '-p', '<(PRODUCT_DIR)', | |
22 '-s', '<(SHARED_INTERMEDIATE_DIR)', | |
23 '<@(pak_locales)', | |
24 ], | |
25 } | |
OLD | NEW |