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

Side by Side Diff: runtime/tools/gyp/runtime-configurations.gypi

Issue 21716004: dart:io | Add SecureSocket.importPrivateCertificates, that reads a PKCS#12 file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add more API functions, tests Created 7 years, 4 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 | Annotate | Revision Log
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 { 5 {
6 'variables': { 6 'variables': {
7 'dart_debug_optimization_level%': '2', 7 'dart_debug_optimization_level%': '0',
8 # 'dart_debug_optimization_level%': '2',
8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi, 9 # 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. 10 # then do not build the native libraries supporting dart:io.
10 'dart_io_support%': 0, 11 'dart_io_support%': 0,
11 # Intel VTune related variables. 12 # Intel VTune related variables.
12 'dart_vtune_support%': 0, 13 'dart_vtune_support%': 0,
13 'conditions': [ 14 'conditions': [
14 ['OS=="linux"', { 15 ['OS=="linux"', {
15 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe', 16 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe',
16 }], 17 }],
17 ['OS=="win"', { 18 ['OS=="win"', {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 102
102 'Dart_Release': { 103 'Dart_Release': {
103 'abstract': 1, 104 'abstract': 1,
104 'xcode_settings': { 105 'xcode_settings': {
105 'GCC_OPTIMIZATION_LEVEL': '3', 106 'GCC_OPTIMIZATION_LEVEL': '3',
106 }, 107 },
107 }, 108 },
108 }, 109 },
109 }, 110 },
110 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698