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

Side by Side Diff: tools/gyp/all.gypi

Issue 10933125: MSVS output to /build/ dir. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Comment updated 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 | « tools/create_sdk.py ('k') | tools/gyp/common.gypi » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # A set of variables needed to build some of the Chrome based subparts of the 5 # A set of variables needed to build some of the Chrome based subparts of the
6 # Dart project (e.g. V8). This is in no way a complete list of variables being 6 # Dart project (e.g. V8). This is in no way a complete list of variables being
7 # defined by Chrome, but just the minimally needed subset. 7 # defined by Chrome, but just the minimally needed subset.
8 { 8 {
9 'variables': { 9 'variables': {
10 'library': 'static_library', 10 'library': 'static_library',
11 'component': 'static_library', 11 'component': 'static_library',
12 'target_arch': 'ia32', 12 'target_arch': 'ia32',
13 'v8_location': '<(DEPTH)/third_party/v8', 13 'v8_location': '<(DEPTH)/third_party/v8',
14 }, 14 },
15 'conditions': [ 15 'conditions': [
16 [ 'OS=="linux"', { 16 [ 'OS=="linux"', {
17 'target_defaults': { 17 'target_defaults': {
18 'ldflags': [ '-pthread', ], 18 'ldflags': [ '-pthread', ],
19 }, 19 },
20 }], 20 }],
21 [ 'OS=="win"', { 21 [ 'OS=="win"', {
22 'target_defaults': { 22 'target_defaults': {
23 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], 23 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
24 }, 24 },
25 }], 25 }],
26 ], 26 ],
27 'includes': [ 27 'includes': [
28 'xcode.gypi', 28 'xcode.gypi',
29 'msvs.gypi',
29 'configurations.gypi', 30 'configurations.gypi',
30 'source_filter.gypi', 31 'source_filter.gypi',
31 ], 32 ],
32 } 33 }
OLDNEW
« no previous file with comments | « tools/create_sdk.py ('k') | tools/gyp/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698