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

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

Issue 15023007: Fix Clank+Dart compilation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . Created 7 years, 7 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%': '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"', { 'includes': [ 'runtime_configurations_android.gypi', ], } ],
Ivan Posva 2013/05/08 09:27:35 Split on multiple lines please. See the conditions
podivilov 2013/05/13 09:47:20 Done.
25 ],
26
23 'target_defaults': { 27 'target_defaults': {
24 'configurations': { 28 'configurations': {
25 29
26 'Dart_Base': { 30 'Dart_Base': {
27 'abstract': 1, 31 'abstract': 1,
28 'xcode_settings': { 32 'xcode_settings': {
29 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual 33 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual
30 }, 34 },
31 }, 35 },
32 36
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 97
94 'Dart_Release': { 98 'Dart_Release': {
95 'abstract': 1, 99 'abstract': 1,
96 'xcode_settings': { 100 'xcode_settings': {
97 'GCC_OPTIMIZATION_LEVEL': '3', 101 'GCC_OPTIMIZATION_LEVEL': '3',
98 }, 102 },
99 }, 103 },
100 }, 104 },
101 }, 105 },
102 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698