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

Side by Side Diff: test/ninja/normalize-paths-win/normalize-paths.gyp

Issue 10228016: ninja windows: fix expansion of some VS macros (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: Created 8 years, 8 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) 2010 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': 'Some_Target',
9 'type': 'executable',
10 'msvs_settings': {
11 'VCLinkerTool': {
12 'OutputFile': '<(PRODUCT_DIR)/stuff/AnotherName.exe',
13 },
14 },
15 'sources': [
16 'HeLLo.cc',
17 'blOrP.idl',
18 ],
19 },
20 {
21 'target_name': 'second',
22 'type': 'executable',
23 'msvs_settings': {
24 'VCLinkerTool': {
25 'OutputFile': '$(OutDir)\\things\\AnotherName.exe',
26 },
27 },
28 'sources': [
29 'HeLLo.cc',
30 ],
31 },
32 {
33 'target_name': 'action',
34 'type': 'none',
35 'msvs_cygwin_shell': '0',
36 'actions': [
37 {
38 'inputs': [ '$(IntDir)\\SomeInput' ],
39 'outputs': [
40 '<(PRODUCT_DIR)/ReSuLt',
41 '<(SHARED_INTERMEDIATE_DIR)/TempFile',
42 ],
43 'action_name': 'Test action',
44 # Unfortunately, we can't normalize this field because it's
45 # free-form. Fortunately, ninja doesn't inspect it at all (only the
46 # inputs and outputs) so it's not mandatory.
47 'action': [],
48 },
49 ],
50 },
51 ],
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698