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

Side by Side Diff: ios/chrome/ios_chrome_repack_locales.gypi

Issue 1164983004: [iOS] Add a repack steps to iOS upstream for unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698