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 'dart_io_secure_socket%': 1, | 11 'dart_io_secure_socket%': 1, |
12 'dart_io_ssl_builtin_roots%': 1, | |
13 # Intel VTune related variables. | 12 # Intel VTune related variables. |
14 'dart_vtune_support%': 0, | 13 'dart_vtune_support%': 0, |
15 'conditions': [ | 14 'conditions': [ |
16 ['OS=="linux"', { | 15 ['OS=="linux"', { |
17 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe', | 16 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe', |
18 }], | 17 }], |
19 ['OS=="win"', { | 18 ['OS=="win"', { |
20 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 201
3', | 19 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 201
3', |
21 }], | 20 }], |
22 ], | 21 ], |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 | 122 |
124 'Dart_Product' : { | 123 'Dart_Product' : { |
125 'abstract': 1, | 124 'abstract': 1, |
126 'xcode_settings': { | 125 'xcode_settings': { |
127 'GCC_OPTIMIZATION_LEVEL': '3', | 126 'GCC_OPTIMIZATION_LEVEL': '3', |
128 } | 127 } |
129 }, | 128 }, |
130 }, | 129 }, |
131 }, | 130 }, |
132 } | 131 } |
OLD | NEW |