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

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

Issue 10917007: Update V8 to version 3.12. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/gyp/all.gypi ('k') | tools/gyp/configurations_xcode.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 # Dash project (e.g. V8). This is in no way a complete list of variables being 6 # Dash 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 # Note: this file is similar to all.gypi, but is used when running gyp 9 # Note: this file is similar to all.gypi, but is used when running gyp
10 # from subproject directories. This is deprecated, but still supported. 10 # from subproject directories. This is deprecated, but still supported.
11 { 11 {
12 'variables': { 12 'variables': {
13 'library': 'static_library', 13 'library': 'static_library',
14 'component': 'static_library', 14 'component': 'static_library',
15 'host_arch': 'ia32',
16 'target_arch': 'ia32', 15 'target_arch': 'ia32',
17 'v8_location': '<(DEPTH)/../third_party/v8', 16 'v8_location': '<(DEPTH)/../third_party/v8',
18 }, 17 },
19 'conditions': [ 18 'conditions': [
20 [ 'OS=="linux"', { 19 [ 'OS=="linux"', {
21 'target_defaults': { 20 'target_defaults': {
22 'ldflags': [ '-pthread', ], 21 'ldflags': [ '-pthread', ],
23 }, 22 },
24 }], 23 }],
25 [ 'OS=="win"', { 24 [ 'OS=="win"', {
26 'target_defaults': { 25 'target_defaults': {
27 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], 26 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'],
28 }, 27 },
29 }], 28 }],
30 ], 29 ],
31 'includes': [ 30 'includes': [
32 'xcode.gypi', 31 'xcode.gypi',
33 'configurations.gypi', 32 'configurations.gypi',
34 'source_filter.gypi', 33 'source_filter.gypi',
35 ], 34 ],
36 } 35 }
OLDNEW
« no previous file with comments | « tools/gyp/all.gypi ('k') | tools/gyp/configurations_xcode.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698