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

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

Issue 14769009: Remove v8 source dependency, enable more compiler warnings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 7 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
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. This is in no way a complete list of variables being defined
7 # defined by Chrome, but just the minimally needed subset. 7 # 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 'target_arch': 'ia32', 15 'target_arch': 'ia32',
16 'v8_location': '<(DEPTH)/../third_party/v8',
17 # Flag that tells us whether to build native support for dart:io. 16 # Flag that tells us whether to build native support for dart:io.
18 'dart_io_support': 1, 17 'dart_io_support': 1,
19 }, 18 },
20 'conditions': [ 19 'conditions': [
21 [ 'OS=="linux"', { 20 [ 'OS=="linux"', {
22 'target_defaults': { 21 'target_defaults': {
23 'ldflags': [ '-pthread', ], 22 'ldflags': [ '-pthread', ],
24 }, 23 },
25 }], 24 }],
26 [ 'OS=="win"', { 25 [ 'OS=="win"', {
27 'target_defaults': { 26 'target_defaults': {
28 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], 27 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'],
29 }, 28 },
30 'includes': [ 29 'includes': [
31 'msvs.gypi', 30 'msvs.gypi',
32 ], 31 ],
33 }], 32 }],
34 [ 'OS=="mac"', { 33 [ 'OS=="mac"', {
35 'includes': [ 34 'includes': [
36 'xcode.gypi', 35 'xcode.gypi',
37 ], 36 ],
38 }], 37 }],
39 ], 38 ],
40 'includes': [ 39 'includes': [
41 'configurations.gypi', 40 'configurations.gypi',
42 ], 41 ],
43 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698