OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'grit_base_dir': '<(SHARED_INTERMEDIATE_DIR)', | 8 'grit_base_dir': '<(SHARED_INTERMEDIATE_DIR)', |
9 'grit_out_dir': '<(grit_base_dir)/ios/today_extension', | 9 'grit_out_dir': '<(grit_base_dir)/ios/today_extension', |
10 }, | 10 }, |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 { | 45 { |
46 'target_name': 'ios_today_extension_packed_resources', | 46 'target_name': 'ios_today_extension_packed_resources', |
47 'type': 'none', | 47 'type': 'none', |
48 'dependencies': [ | 48 'dependencies': [ |
49 'ios_today_extension_resources', | 49 'ios_today_extension_resources', |
50 ], | 50 ], |
51 'actions': [ | 51 'actions': [ |
52 { | 52 { |
53 'action_name': 'repack_ios_today_extension_locales', | 53 'action_name': 'repack_ios_today_extension_locales', |
54 'variables': { | 54 'variables': { |
55 'repack_locales_path': 'tools/build/ios_repack_today_extension_local
es.py', | 55 'repack_locales_path': 'tools/build/ios_repack_extension_locales.py'
, |
56 }, | 56 }, |
57 'inputs': [ | 57 'inputs': [ |
58 'tools/build/ios_repack_today_extension_locales.py', | 58 'tools/build/ios_repack_extension_locales.py', |
59 '<!@pymod_do_main(ios_repack_today_extension_locales -i ' | 59 '<!@pymod_do_main(ios_repack_extension_locales -i ' |
| 60 '-n today_extension ' |
60 '-s <(SHARED_INTERMEDIATE_DIR) ' | 61 '-s <(SHARED_INTERMEDIATE_DIR) ' |
61 '-x <(SHARED_INTERMEDIATE_DIR)/repack_today_extension ' | 62 '-x <(SHARED_INTERMEDIATE_DIR)/repack_today_extension ' |
62 '-b <(branding_path_component) ' | 63 '-b <(branding_path_component) ' |
63 '<(locales))' | 64 '<(locales))' |
64 ], | 65 ], |
65 'outputs': [ | 66 'outputs': [ |
66 '<!@pymod_do_main(ios_repack_today_extension_locales -o ' | 67 '<!@pymod_do_main(ios_repack_extension_locales -o ' |
| 68 '-n today_extension ' |
67 '-s <(SHARED_INTERMEDIATE_DIR) ' | 69 '-s <(SHARED_INTERMEDIATE_DIR) ' |
68 '-x <(SHARED_INTERMEDIATE_DIR)/repack_today_extension ' | 70 '-x <(SHARED_INTERMEDIATE_DIR)/repack_today_extension ' |
69 '<(locales))' | 71 '<(locales))' |
70 ], | 72 ], |
71 'action': [ | 73 'action': [ |
72 'python', | 74 'python', |
73 'tools/build/ios_repack_today_extension_locales.py', | 75 'tools/build/ios_repack_extension_locales.py', |
| 76 '-n', 'today_extension', |
74 '-x', '<(SHARED_INTERMEDIATE_DIR)/repack_today_extension', | 77 '-x', '<(SHARED_INTERMEDIATE_DIR)/repack_today_extension', |
75 '-s', '<(SHARED_INTERMEDIATE_DIR)', | 78 '-s', '<(SHARED_INTERMEDIATE_DIR)', |
76 '-b', '<(branding_path_component)', | 79 '-b', '<(branding_path_component)', |
77 '<@(locales)', | 80 '<@(locales)', |
78 ], | 81 ], |
79 }, | 82 }, |
80 ], | 83 ], |
81 }, | 84 }, |
82 ], | 85 ], |
83 } | 86 } |
84 | 87 |
OLD | NEW |