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

Side by Side Diff: test/rules/src/special-variables.gyp

Issue 10893030: ninja windows: Fix special variables not getting emitted when expanded from VS macros (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: copyright Created 8 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 | Annotate | Revision Log
« no previous file with comments | « test/rules/src/as.bat ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
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 'rules': [
9 {
10 'rule_name': 'assembler (gnu-compatible)',
11 'msvs_cygwin_shell': 0,
12 'msvs_quote_cmd': 0,
13 'extension': 'S',
14 'inputs': [
15 'as.bat',
16 '$(InputPath)'
17 ],
18 'outputs': [
19 '$(IntDir)/$(InputName).obj',
20 ],
21 'action': [
22 'as.bat',
23 '$(InputPath)',
24 '$(IntDir)/$(InputName).obj',
25 ],
26 'message': 'Building assembly language file $(InputPath)',
27 'process_outputs_as_sources': 1,
28 },
29 ],
30 'target_name': 'test',
31 'type': 'static_library',
32 'sources': [ 'an_asm.S' ],
33 },
34 ],
35 }
OLDNEW
« no previous file with comments | « test/rules/src/as.bat ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698