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

Side by Side Diff: dart/tools/gyp/all.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 # Dart project (e.g. V8). This is in no way a complete list of variables being 6 # Dart 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 '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',
14 # Flag that tells us whether to build native support for dart:io. 13 # Flag that tells us whether to build native support for dart:io.
15 'dart_io_support': 1, 14 'dart_io_support': 1,
16 }, 15 },
17 'conditions': [ 16 'conditions': [
18 [ 'OS=="linux"', { 17 [ 'OS=="linux"', {
19 'target_defaults': { 18 'target_defaults': {
20 'ldflags': [ '-pthread', ], 19 'ldflags': [ '-pthread', ],
21 }, 20 },
22 }], 21 }],
23 [ 'OS=="win"', { 22 [ 'OS=="win"', {
24 'target_defaults': { 23 'target_defaults': {
25 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], 24 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
26 }, 25 },
27 'includes': [ 26 'includes': [
28 'msvs.gypi', 27 'msvs.gypi',
29 ], 28 ],
30 }], 29 }],
31 [ 'OS=="mac"', { 30 [ 'OS=="mac"', {
32 'includes': [ 31 'includes': [
33 'xcode.gypi', 32 'xcode.gypi',
34 ], 33 ],
35 }], 34 }],
36 ], 35 ],
37 'includes': [ 36 'includes': [
38 'configurations.gypi', 37 'configurations.gypi',
39 ], 38 ],
40 } 39 }
OLDNEW
« no previous file with comments | « dart/dart.gyp ('k') | dart/tools/gyp/common.gypi » ('j') | dart/tools/gyp/configurations.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698