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

Unified Diff: runtime/tools/gyp/runtime-configurations.gypi

Issue 2992593002: [infra] Begin removing gyp (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: runtime/tools/gyp/runtime-configurations.gypi
diff --git a/runtime/tools/gyp/runtime-configurations.gypi b/runtime/tools/gyp/runtime-configurations.gypi
deleted file mode 100644
index 04b7dd52f9cff6cada30d663dc141dc68603c7b6..0000000000000000000000000000000000000000
--- a/runtime/tools/gyp/runtime-configurations.gypi
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-{
- 'variables': {
- 'dart_debug_optimization_level%': '2',
- # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi,
- # then do not build the native libraries supporting dart:io.
- 'dart_io_support%': 0,
- 'dart_io_secure_socket%': 1,
- 'asan%': 0,
- 'msan%': 0,
- 'tsan%': 0,
- # Intel VTune related variables.
- 'dart_vtune_support%': 0,
- 'conditions': [
- ['OS=="linux"', {
- 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe',
- }],
- ['OS=="win"', {
- 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 2013',
- }],
- ],
- },
-
- 'target_defaults': {
- 'configurations': {
-
- 'Dart_Base': {
- 'abstract': 1,
- 'xcode_settings': {
- 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual
- },
- },
-
- 'Dart_ia32_Base': {
- 'abstract': 1,
- 'xcode_settings': {
- 'ARCHS': [ 'i386' ],
- },
- 'conditions': [
- ['OS=="linux" and dart_vtune_support==1', {
- 'ldflags': ['-L<(dart_vtune_root)/lib32'],
- }],
- ['OS=="win" and dart_vtune_support==1', {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalLibraryDirectories': ['<(dart_vtune_root)/lib32'],
- },
- },
- }],
- ],
- },
-
- 'Dart_x64_Base': {
- 'abstract': 1,
- 'xcode_settings': {
- 'ARCHS': [ 'x86_64' ],
- },
- 'conditions': [
- ['OS=="linux" and dart_vtune_support==1', {
- 'ldflags': ['-L<(dart_vtune_root)/lib64'],
- }],
- ['OS=="win" and dart_vtune_support==1', {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalLibraryDirectories': ['<(dart_vtune_root)/lib32'],
- },
- },
- }],
- ],
- },
-
- 'Dart_simarm_Base': {
- 'abstract': 1,
- 'xcode_settings': {
- 'ARCHS': [ 'i386' ],
- },
- },
-
- 'Dart_simarmv6_Base': {
- 'abstract': 1,
- 'xcode_settings': {
- 'ARCHS': [ 'i386' ],
- },
- },
-
- 'Dart_simarmv5te_Base': {
- 'abstract': 1,
- 'xcode_settings': {
- 'ARCHS': [ 'i386' ],
- },
- },
-
- 'Dart_Debug': {
- 'abstract': 1,
- 'defines': [
- 'DEBUG',
- ],
- 'xcode_settings': {
- 'GCC_OPTIMIZATION_LEVEL': '<(dart_debug_optimization_level)',
- },
- },
-
- 'Debug': {
- 'defines': [
- 'DEBUG',
- ],
- },
-
- 'Dart_Release': {
- 'abstract': 1,
- 'xcode_settings': {
- 'GCC_OPTIMIZATION_LEVEL': '3',
- },
- },
-
- 'Dart_Product' : {
- 'abstract': 1,
- 'xcode_settings': {
- 'GCC_OPTIMIZATION_LEVEL': '3',
- }
- },
- },
- },
-}

Powered by Google App Engine
This is Rietveld 408576698