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

Side by Side Diff: test/win/vs-macros/containing-gyp.gyp

Issue 10274018: ninja windows: more support for VS macros (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: guard convertvsmacros on win Created 8 years, 7 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
OLDNEW
(Empty)
1 # Copyright (c) 2012 Google Inc. 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': 'test_expansions',
9 'msvs_cygwin_shell': 0,
10 'type': 'none',
11 'rules': [
12 {
13 'rule_name': 'assembler (gnu-compatible)',
14 'msvs_cygwin_shell': 0,
15 'msvs_quote_cmd': 0,
16 'extension': 'S',
17 'inputs': [
18 'as.py',
19 '$(InputPath)'
20 ],
21 'outputs': [
22 '$(IntDir)/$(InputName).obj',
23 ],
24 'action':
25 ['python',
26 'as.py',
27 '-a', '$(PlatformName)',
28 '-o', '$(IntDir)/$(InputName).obj',
29 '-p', '<(DEPTH)',
30 '$(InputPath)'],
31 'message': 'Building assembly language file $(InputPath)',
32 'process_outputs_as_sources': 1,
33 },
34 ],
35 'sources': [
36 'input.S',
37 ],
38 },
39 ]
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698