OLD | NEW |
---|---|
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. |
(...skipping 10 matching lines...) Expand all Loading... | |
21 [ 'OS=="linux"', { | 21 [ 'OS=="linux"', { |
22 'target_defaults': { | 22 'target_defaults': { |
23 'ldflags': [ '-pthread', ], | 23 'ldflags': [ '-pthread', ], |
24 }, | 24 }, |
25 }], | 25 }], |
26 [ 'OS=="win"', { | 26 [ 'OS=="win"', { |
27 'target_defaults': { | 27 'target_defaults': { |
28 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], | 28 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], |
29 }, | 29 }, |
30 }], | 30 }], |
31 [ 'OS=="mac"', { | |
32 'includes': [ | |
33 'xcode.gypi', | |
34 ], | |
35 }], | |
31 ], | 36 ], |
32 'includes': [ | 37 'includes': [ |
33 'xcode.gypi', | |
34 'msvs.gypi', | 38 'msvs.gypi', |
Ivan Posva
2013/03/13 09:44:40
ditto.
kustermann
2013/03/13 15:30:29
Done.
| |
35 'configurations.gypi', | 39 'configurations.gypi', |
36 ], | 40 ], |
37 } | 41 } |
OLD | NEW |