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

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

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 years, 3 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
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698