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

Unified Diff: tools/gyp/configurations_msvs.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: tools/gyp/configurations_msvs.gypi
diff --git a/tools/gyp/configurations_msvs.gypi b/tools/gyp/configurations_msvs.gypi
deleted file mode 100644
index 530b70152f874f2088457dd082f17026ddff2943..0000000000000000000000000000000000000000
--- a/tools/gyp/configurations_msvs.gypi
+++ /dev/null
@@ -1,143 +0,0 @@
-# Copyright (c) 2011, 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',
- },
- 'target_defaults': {
- 'configurations': {
- 'Dart_Win_Base': {
- 'abstract': 1,
- 'msvs_configuration_attributes': {
- 'OutputDirectory': '<(DEPTH)\\out\\$(ConfigurationName)',
- 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
- 'CharacterSet': '1',
- },
- 'defines': [
- '_HAS_EXCEPTIONS=0', # disable C++ exceptions use in C++ std. libs.
- ],
- },
- 'Dart_Win_ia32_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_x64_Base': {
- 'abstract': 1,
- 'msvs_configuration_platform': 'x64',
- },
- 'Dart_Win_simarm_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_simarmv6_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_simarmv5te_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_simarm64_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_simdbc_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_simdbc64_Base': {
- 'abstract': 1,
- },
- 'Dart_Win_Debug': {
- 'abstract': 1,
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'Optimization': '<(dart_debug_optimization_level)',
- 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2
- 'DebugInformationFormat': '3',
- 'ExceptionHandling': '0',
- 'RuntimeTypeInfo': 'false',
- 'RuntimeLibrary': '1', # /MTd - Multi-threaded, static (debug)
- 'OmitFramePointers': 'false',
- },
- 'VCLinkerTool': {
- 'LinkIncremental': '2',
- 'GenerateDebugInformation': 'true',
- 'StackReserveSize': '2097152',
- 'AdditionalDependencies': [
- 'advapi32.lib',
- 'shell32.lib',
- 'dbghelp.lib',
- ],
- },
- },
- # C4351 warns MSVC follows the C++ specification regarding array
- # initialization in member initializers. Code that expects the
- # specified behavior should silence this warning.
- 'msvs_disabled_warnings': [4351],
- },
-
- 'Dart_Win_Release': {
- 'abstract': 1,
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'Optimization': '2',
- 'InlineFunctionExpansion': '2',
- 'EnableIntrinsicFunctions': 'true',
- 'FavorSizeOrSpeed': '0',
- 'ExceptionHandling': '0',
- 'RuntimeTypeInfo': 'false',
- 'StringPooling': 'true',
- 'RuntimeLibrary': '0', # /MT - Multi-threaded, static
- 'OmitFramePointers': 'false',
- },
- 'VCLinkerTool': {
- 'LinkIncremental': '1',
- 'GenerateDebugInformation': 'true',
- 'OptimizeReferences': '2',
- 'EnableCOMDATFolding': '2',
- 'StackReserveSize': '2097152',
- 'AdditionalDependencies': [
- 'advapi32.lib',
- 'shell32.lib',
- 'dbghelp.lib',
- ],
- },
- },
- # C4351 warns MSVC follows the C++ specification regarding array
- # initialization in member initializers. Code that expects the
- # specified behavior should silence this warning.
- 'msvs_disabled_warnings': [4351],
- },
-
- 'Dart_Win_Product': {
- 'abstract': 1,
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'Optimization': '2',
- 'InlineFunctionExpansion': '2',
- 'EnableIntrinsicFunctions': 'true',
- 'EnableFunctionLevelLinking': 'true',
- 'FavorSizeOrSpeed': '0',
- 'ExceptionHandling': '0',
- 'RuntimeTypeInfo': 'false',
- 'StringPooling': 'true',
- 'RuntimeLibrary': '0', # /MT - Multi-threaded, static
- },
- 'VCLinkerTool': {
- 'LinkIncremental': '1',
- 'GenerateDebugInformation': 'true',
- 'OptimizeReferences': '2',
- 'EnableCOMDATFolding': '2',
- 'StackReserveSize': '2097152',
- 'AdditionalDependencies': [
- 'advapi32.lib',
- 'shell32.lib',
- 'dbghelp.lib',
- ],
- },
- },
- # C4351 warns MSVC follows the C++ specification regarding array
- # initialization in member initializers. Code that expects the
- # specified behavior should silence this warning.
- 'msvs_disabled_warnings': [4351],
- },
- },
- },
-}

Powered by Google App Engine
This is Rietveld 408576698