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

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

Issue 1559053002: Refs #10260 OpenBSD support #25327 Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address code review issues Created 4 years, 11 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
« no previous file with comments | « tools/build.py ('k') | tools/gyp/configurations.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. This is in no way a complete list of variables being defined 6 # Dart project. This is in no way a complete list of variables being defined
7 # 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 # 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.
14 'dart_io_support': 1, 14 'dart_io_support': 1,
15 # Flag controls whether or not frame pointers are enabled. 15 # Flag controls whether or not frame pointers are enabled.
16 'c_frame_pointers%': 1, 16 'c_frame_pointers%': 1,
17 }, 17 },
18 'conditions': [ 18 'conditions': [
19 [ 'OS=="linux"', { 19 [ 'OS=="linux"', {
20 'target_defaults': { 20 'target_defaults': {
21 'ldflags': [ '-pthread', ], 21 'ldflags': [ '-pthread', ],
22 }, 22 },
23 }], 23 }],
24 [ 'OS=="openbsd"', {
25 'target_defaults': {
26 'ldflags': [ '-pthread', ],
27 },
28 }],
24 [ 'OS=="win"', { 29 [ 'OS=="win"', {
25 'target_defaults': { 30 'target_defaults': {
26 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], 31 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
27 }, 32 },
28 'includes': [ 33 'includes': [
29 'msvs.gypi', 34 'msvs.gypi',
30 ], 35 ],
31 }], 36 }],
32 [ 'OS=="mac"', { 37 [ 'OS=="mac"', {
33 'includes': [ 38 'includes': [
34 'xcode.gypi', 39 'xcode.gypi',
35 ], 40 ],
36 }], 41 }],
37 ], 42 ],
38 'includes': [ 43 'includes': [
39 'configurations.gypi', 44 'configurations.gypi',
40 ], 45 ],
41 } 46 }
OLDNEW
« no previous file with comments | « tools/build.py ('k') | tools/gyp/configurations.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698