Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: build/win/system.gyp

Issue 9317020: Remove unused cygwin build step (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'cygwin',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'setup_mount',
13 'msvs_cygwin_shell': 0,
14 'inputs': [
15 '../../third_party/cygwin/setup_mount.bat',
16 ],
17 # Visual Studio requires an output file, or else the
18 # custom build step won't run.
19 'outputs': [
20 '../../third_party/cygwin/_always_run_setup_mount.marker',
21 ],
22 'action': ['', '<@(_inputs)'],
23 },
24 ],
25 },
26 ],
27 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698