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

Unified Diff: tools/gyp/all.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/all.gypi
diff --git a/tools/gyp/all.gypi b/tools/gyp/all.gypi
deleted file mode 100644
index 1db7deac191ac24d50658a0a4939a9810fb99014..0000000000000000000000000000000000000000
--- a/tools/gyp/all.gypi
+++ /dev/null
@@ -1,45 +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.
-
-# A set of variables needed to build some of the Chrome based subparts of the
-# Dart project. This is in no way a complete list of variables being defined
-# by Chrome, but just the minimally needed subset.
-{
- 'variables': {
- 'library': 'static_library',
- 'component': 'static_library',
- 'target_arch': 'ia32',
- # Flag that tells us whether to build native support for dart:io.
- 'dart_io_support': 1,
- # Flag that tells us whether this is an ASAN build.
- 'asan%': 0,
- # Flag that tells us whether this is a MSAN build.
- 'msan%': 0,
- # Flag that teslls us whether this is a TSAN build.
- 'tsan%': 0,
- },
- 'conditions': [
- [ 'OS=="linux"', {
- 'target_defaults': {
- 'ldflags': [ '-pthread', ],
- },
- }],
- [ 'OS=="win"', {
- 'target_defaults': {
- 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
- },
- 'includes': [
- 'msvs.gypi',
- ],
- }],
- [ 'OS=="mac"', {
- 'includes': [
- 'xcode.gypi',
- ],
- }],
- ],
- 'includes': [
- 'configurations.gypi',
- ],
-}

Powered by Google App Engine
This is Rietveld 408576698