OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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)/component_extension_resources.pak', | 8 '<(grit_out_dir)/component_extension_resources.pak', |
9 '<(grit_out_dir)/devtools_frontend_resources.pak', | 9 '<(grit_out_dir)/devtools_frontend_resources.pak', |
10 '<(grit_out_dir)/devtools_resources.pak', | 10 '<(grit_out_dir)/devtools_resources.pak', |
11 '<(grit_out_dir)/net_internals_resources.pak', | 11 '<(grit_out_dir)/net_internals_resources.pak', |
12 '<(grit_out_dir)/options_resources.pak', | 12 '<(grit_out_dir)/options_resources.pak', |
| 13 '<(grit_out_dir)/options2_resources.pak', |
13 '<(grit_out_dir)/quota_internals_resources.pak', | 14 '<(grit_out_dir)/quota_internals_resources.pak', |
14 '<(grit_out_dir)/shared_resources.pak', | 15 '<(grit_out_dir)/shared_resources.pak', |
15 '<(grit_out_dir)/sync_internals_resources.pak', | 16 '<(grit_out_dir)/sync_internals_resources.pak', |
16 '<(grit_out_dir)/workers_resources.pak', | 17 '<(grit_out_dir)/workers_resources.pak', |
17 ], | 18 ], |
18 'conditions': [ | 19 'conditions': [ |
19 ['OS != "mac"', { | 20 ['OS != "mac"', { |
20 'pak_inputs': [ | 21 'pak_inputs': [ |
21 '<(grit_out_dir)/quota_internals_resources.pak', | 22 '<(grit_out_dir)/quota_internals_resources.pak', |
22 ], | 23 ], |
23 }], | 24 }], |
24 ], | 25 ], |
25 }, | 26 }, |
26 'inputs': [ | 27 'inputs': [ |
27 '<(repack_path)', | 28 '<(repack_path)', |
28 '<@(pak_inputs)', | 29 '<@(pak_inputs)', |
29 ], | 30 ], |
30 'outputs': [ | 31 'outputs': [ |
31 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', | 32 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', |
32 ], | 33 ], |
33 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'], | 34 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'], |
34 } | 35 } |
OLD | NEW |