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

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

Issue 629543002: Add Ninja support for MSVS $(TargetExt), $(TargetFileName) and $(TargetPath) macros. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Reuse dictionary from MSVSUtil. Created 6 years, 2 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/win/vs-macros/targetext.gyp ('k') | test/win/vs-macros/targetpath.gyp » ('j') | 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) 2014 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_targetfilename_executable',
9 'type': 'executable',
10 'sources': ['hello.cc'],
11 'msvs_settings': {
12 'VCLinkerTool': {
13 'OutputFile': '$(TargetDir)\\$(TargetFileName)',
14 },
15 },
16 },
17 {
18 'target_name': 'test_targetfilename_loadable_module',
19 'type': 'loadable_module',
20 'sources': ['hello.cc'],
21 'msvs_settings': {
22 'VCLinkerTool': {
23 'OutputFile': '$(TargetDir)\\$(TargetFileName)',
24 },
25 },
26 },
27 {
28 'target_name': 'test_targetfilename_shared_library',
29 'type': 'loadable_module',
30 'sources': ['hello.cc'],
31 'msvs_settings': {
32 'VCLinkerTool': {
33 'OutputFile': '$(TargetDir)\\$(TargetFileName)',
34 },
35 },
36 },
37 {
38 'target_name': 'test_targetfilename_static_library',
39 'type': 'static_library',
40 'sources': ['hello.cc'],
41 'msvs_settings': {
42 'VCLibrarianTool': {
43 'OutputFile': '$(TargetDir)\\$(TargetFileName)',
44 },
45 },
46 },
47 {
48 'target_name': 'test_targetfilename_product_extension',
49 'type': 'executable',
50 'sources': ['hello.cc'],
51 'product_extension': 'foo',
52 'msvs_settings': {
53 'VCLinkerTool': {
54 'OutputFile': '$(TargetDir)\\$(TargetFileName)',
55 },
56 },
57 },
58 ]
59 }
OLDNEW
« no previous file with comments | « test/win/vs-macros/targetext.gyp ('k') | test/win/vs-macros/targetpath.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698