Chromium Code Reviews| 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 # Dart project (e.g. V8). This is in no way a complete list of variables being | 6 # Dart 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 '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', | 13 'v8_location': '<(DEPTH)/third_party/v8', |
| 14 # Variable that tells us if we are part of a dartium build. | |
| 15 'in_dartium': 0, | |
|
Mads Ager (google)
2012/11/12 07:27:42
Maybe we should call this variable 'dart_io_suppor
| |
| 14 }, | 16 }, |
| 15 'conditions': [ | 17 'conditions': [ |
| 16 [ 'OS=="linux"', { | 18 [ 'OS=="linux"', { |
| 17 'target_defaults': { | 19 'target_defaults': { |
| 18 'ldflags': [ '-pthread', ], | 20 'ldflags': [ '-pthread', ], |
| 19 }, | 21 }, |
| 20 }], | 22 }], |
| 21 [ 'OS=="win"', { | 23 [ 'OS=="win"', { |
| 22 'target_defaults': { | 24 'target_defaults': { |
| 23 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], | 25 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], |
| 24 }, | 26 }, |
| 25 }], | 27 }], |
| 26 ], | 28 ], |
| 27 'includes': [ | 29 'includes': [ |
| 28 'xcode.gypi', | 30 'xcode.gypi', |
| 29 'msvs.gypi', | 31 'msvs.gypi', |
| 30 'configurations.gypi', | 32 'configurations.gypi', |
| 31 'source_filter.gypi', | 33 'source_filter.gypi', |
| 32 ], | 34 ], |
| 33 } | 35 } |
| OLD | NEW |