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

Side by Side Diff: test/win/linker-flags/profile.gyp

Issue 11304012: Add support at test for /PROFILE in Ninja (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 1 month 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
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 # Verify that 'Profile' option correctly makes it to LINK steup in Ninja
8 {
9 'target_name': 'test_ninja_profile_true',
10 'type': 'executable',
11 'msvs_settings': {
12 'VCLinkerTool': {
13 'Profile': 'true',
14 },
15 },
16 'sources': ['hello.cc'],
17 },
18 {
19 'target_name': 'test_ninja_profile_dll_true',
20 'type': 'shared_library',
21 'msvs_settings': {
22 'VCLinkerTool': {
23 'Profile': 'true',
24 },
25 },
26 'sources': ['hello.cc'],
27 },
28 {
29 'target_name': 'test_ninja_profile_no',
30 'type': 'executable',
31 'sources': ['hello.cc'],
32 },
33 {
34 'target_name': 'test_ninja_profile_dll_false',
35 'type': 'executable',
36 'msvs_settings': {
37 'VCLinkerTool': {
38 'Profile': 'false',
39 },
40 },
41 'sources': ['hello.cc'],
42 },
43 ]
44 }
OLDNEW
« test/win/gyptest-ninja-link-flags.py ('K') | « test/win/gyptest-ninja-link-flags.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698