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

Side by Side Diff: test/configurations/x64/configurations.gyp

Issue 10698023: Get ninja working for nacl. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 5 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 | « pylib/gyp/win_tool.py ('k') | test/configurations/x64/gyptest-x86.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 Google Inc. All rights reserved. 1 # Copyright (c) 2009 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'configurations': { 7 'configurations': {
8 'Debug': { 8 'Debug': {
9 'msvs_configuration_platform': 'Win32', 9 'msvs_configuration_platform': 'Win32',
10 }, 10 },
11 'Debug_x64': { 11 'Debug_x64': {
12 'inherit_from': ['Debug'], 12 'inherit_from': ['Debug'],
13 'msvs_configuration_platform': 'x64', 13 'msvs_configuration_platform': 'x64',
14 }, 14 },
15 }, 15 },
16 }, 16 },
17 'targets': [ 17 'targets': [
18 { 18 {
19 'target_name': 'configurations', 19 'target_name': 'configurations',
20 'type': 'executable', 20 'type': 'executable',
21 'sources': [ 21 'sources': [
22 'configurations.c', 22 'configurations.c',
23 ], 23 ],
24 }, 24 },
25 {
26 'target_name': 'configurations64',
27 'type': 'executable',
28 'sources': [
29 'configurations.c',
30 ],
31 'configurations': {
32 'Debug': {
33 'msvs_target_platform': 'x64',
34 },
35 },
36 },
25 ], 37 ],
26 } 38 }
OLDNEW
« no previous file with comments | « pylib/gyp/win_tool.py ('k') | test/configurations/x64/gyptest-x86.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698