OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'action_name': 'repack_resources', | 5 'action_name': 'repack_resources', |
6 'variables': { | 6 'variables': { |
7 'pak_inputs': [ | 7 'pak_inputs': [ |
8 '<(grit_out_dir)/memory_internals_resources.pak', | 8 '<(grit_out_dir)/memory_internals_resources.pak', |
9 '<(grit_out_dir)/net_internals_resources.pak', | 9 '<(grit_out_dir)/net_internals_resources.pak', |
10 '<(grit_out_dir)/signin_internals_resources.pak', | 10 '<(grit_out_dir)/signin_internals_resources.pak', |
11 '<(grit_out_dir)/sync_internals_resources.pak', | 11 '<(grit_out_dir)/sync_internals_resources.pak', |
| 12 '<(grit_out_dir)/translate_internals_resources.pak', |
12 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/webui_resources.pak', | 13 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/webui_resources.pak', |
13 ], | 14 ], |
14 'conditions': [ | 15 'conditions': [ |
15 ['OS != "ios" and OS != "android"', { | 16 ['OS != "ios" and OS != "android"', { |
16 # New paks should be added here by default. | 17 # New paks should be added here by default. |
17 'pak_inputs': [ | 18 'pak_inputs': [ |
18 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', | 19 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', |
19 '<(grit_out_dir)/component_extension_resources.pak', | 20 '<(grit_out_dir)/component_extension_resources.pak', |
20 '<(grit_out_dir)/options_resources.pak', | 21 '<(grit_out_dir)/options_resources.pak', |
21 '<(grit_out_dir)/quota_internals_resources.pak', | 22 '<(grit_out_dir)/quota_internals_resources.pak', |
(...skipping 13 matching lines...) Expand all Loading... |
35 }, | 36 }, |
36 'inputs': [ | 37 'inputs': [ |
37 '<(repack_path)', | 38 '<(repack_path)', |
38 '<@(pak_inputs)', | 39 '<@(pak_inputs)', |
39 ], | 40 ], |
40 'outputs': [ | 41 'outputs': [ |
41 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', | 42 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', |
42 ], | 43 ], |
43 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'], | 44 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'], |
44 } | 45 } |
OLD | NEW |