OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'conditions': [ | |
7 ['OS=="win"', { | |
8 'targets': [ | |
9 { | |
10 # A target that is outdated if any of the mini_installer test sources | |
11 # are modified. | |
12 'target_name': 'test_installer_sentinel', | |
13 'type': 'none', | |
14 'includes': [ | |
15 '../test/mini_installer/test_installer.gypi', | |
16 ], | |
17 'actions': [ | |
18 { | |
19 'action_name': 'touch_sentinel', | |
20 'variables': { | |
21 'touch_sentinel_py': '../tools/build/win/touch_sentinel.py', | |
22 }, | |
23 'inputs': [ | |
24 '<@(test_installer_sources)', # from test_installer.gypi | |
25 '<(touch_sentinel_py)', | |
26 ], | |
27 'outputs': [ | |
28 '<(SHARED_INTERMEDIATE_DIR)/chrome/installer/test_installer_sent
inel', | |
29 ], | |
30 'action': ['python', '<(touch_sentinel_py)', '<@(_outputs)'], | |
31 }, | |
32 ], | |
33 }, | |
34 ], | |
35 }], | |
36 ], | |
37 } | |
OLD | NEW |