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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'dart_debug_optimization_level%': '2', | 7 'dart_debug_optimization_level%': '2', |
8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi, | 8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi, |
9 # then do not build the native libraries supporting dart:io. | 9 # then do not build the native libraries supporting dart:io. |
10 'dart_io_support%': 0, | 10 'dart_io_support%': 0, |
11 # Intel VTune related variables. | 11 # Intel VTune related variables. |
12 'dart_vtune_support%': 0, | 12 'dart_vtune_support%': 0, |
13 'conditions': [ | 13 'conditions': [ |
14 ['OS=="linux"', { | 14 ['OS=="linux"', { |
15 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe', | 15 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe', |
16 }], | 16 }], |
17 ['OS=="win"', { | 17 ['OS=="win"', { |
18 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 201
3', | 18 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 201
3', |
19 }], | 19 }], |
20 ], | 20 ], |
21 }, | 21 }, |
22 | 22 |
23 'conditions': [ | |
24 ['OS=="android"', { | |
25 'includes': [ | |
26 'runtime_configurations_android.gypi', | |
27 ], | |
28 }], | |
29 ], | |
30 | |
31 'target_defaults': { | 23 'target_defaults': { |
32 'configurations': { | 24 'configurations': { |
33 | 25 |
34 'Dart_Base': { | 26 'Dart_Base': { |
35 'abstract': 1, | 27 'abstract': 1, |
36 'xcode_settings': { | 28 'xcode_settings': { |
37 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual | 29 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual |
38 }, | 30 }, |
39 }, | 31 }, |
40 | 32 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 100 |
109 'Dart_Release': { | 101 'Dart_Release': { |
110 'abstract': 1, | 102 'abstract': 1, |
111 'xcode_settings': { | 103 'xcode_settings': { |
112 'GCC_OPTIMIZATION_LEVEL': '3', | 104 'GCC_OPTIMIZATION_LEVEL': '3', |
113 }, | 105 }, |
114 }, | 106 }, |
115 }, | 107 }, |
116 }, | 108 }, |
117 } | 109 } |
OLD | NEW |