OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 { | |
5 # This file is an unused, a mostly empty placeholder which should go away | |
6 # eventually -- http://crbug.com/52609 | |
7 'action_name': 'repack_chrome', | |
8 'variables': { | |
9 'pak_inputs': [ | |
10 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak', | |
11 ], | |
12 }, | |
13 'inputs': [ | |
14 '<(repack_path)', | |
15 '<@(pak_inputs)', | |
16 ], | |
17 'outputs': [ | |
18 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak', | |
19 ], | |
20 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inputs)'], | |
21 } | |
OLD | NEW |