blob: 2911000b7656a2bb0777b9b821d87616e8270a56 [file] [log] [blame]
[email protected]6f637732012-01-19 03:15:341# Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]ebee67702011-11-03 19:27:332# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4{
5 'action_name': 'repack_chrome',
6 'variables': {
7 'pak_inputs': [
8 '<(grit_out_dir)/browser_resources.pak',
9 '<(grit_out_dir)/common_resources.pak',
[email protected]ebee67702011-11-03 19:27:3310 '<(grit_out_dir)/renderer_resources.pak',
11 '<(grit_out_dir)/theme_resources.pak',
[email protected]cf06693e2012-04-17 04:00:3212 '<(grit_out_dir)/theme_resources_standard.pak',
[email protected]0faa0a2b2011-11-15 18:03:1413 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak',
[email protected]ebee67702011-11-03 19:27:3314 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak',
15 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.pak',
[email protected]cf06693e2012-04-17 04:00:3216 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standard.pak',
[email protected]ebee67702011-11-03 19:27:3317 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.pak',
18 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.pak',
19 ],
20 'conditions': [
[email protected]6f637732012-01-19 03:15:3421 ['OS != "mac" or use_aura==1', {
[email protected]ebee67702011-11-03 19:27:3322 'pak_inputs': [
23 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.pak',
24 ]
25 }],
[email protected]6a3cd37e2012-04-17 17:13:3426 ['enable_extensions==1', {
27 'pak_inputs': [
28 '<(grit_out_dir)/extensions_api_resources.pak',
29 ],
30 }],
[email protected]ebee67702011-11-03 19:27:3331 ],
32 },
33 'inputs': [
34 '<(repack_path)',
35 '<@(pak_inputs)',
36 ],
37 'outputs': [
38 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak',
39 ],
40 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'],
41}