OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'includes': [ | |
7 '../common.gypi', | |
8 ], | |
9 'targets': [ | 6 'targets': [ |
10 { | 7 { |
11 'target_name': 'cygwin', | 8 'target_name': 'cygwin', |
12 'type': 'none', | 9 'type': 'none', |
13 'actions': [ | 10 'actions': [ |
14 { | 11 { |
15 'action_name': 'setup_mount', | 12 'action_name': 'setup_mount', |
16 'msvs_cygwin_shell': 0, | 13 'msvs_cygwin_shell': 0, |
17 'inputs': [ | 14 'inputs': [ |
18 '../../third_party/cygwin/setup_mount.bat', | 15 '../../third_party/cygwin/setup_mount.bat', |
19 ], | 16 ], |
20 # Visual Studio requires an output file, or else the | 17 # Visual Studio requires an output file, or else the |
21 # custom build step won't run. | 18 # custom build step won't run. |
22 'outputs': [ | 19 'outputs': [ |
23 '../../third_party/cygwin/_always_run_setup_mount.marker', | 20 '../../third_party/cygwin/_always_run_setup_mount.marker', |
24 ], | 21 ], |
25 'action': ['', '<@(_inputs)'], | 22 'action': ['', '<@(_inputs)'], |
26 }, | 23 }, |
27 ], | 24 ], |
28 }, | 25 }, |
29 ], | 26 ], |
30 } | 27 } |
OLD | NEW |