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

Unified Diff: chrome/chrome_features.gypi

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge Created 4 years, 3 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
« no previous file with comments | « chrome/chrome_features.gyp ('k') | chrome/chrome_gpu.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_features.gypi
diff --git a/chrome/chrome_features.gypi b/chrome/chrome_features.gypi
deleted file mode 100644
index 8ba18d9f0e7490e8d30744da5a17e585a72e4f98..0000000000000000000000000000000000000000
--- a/chrome/chrome_features.gypi
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# This is the GYP equivalent of //chrome/common/features.gni.
-# Please keep in sync!
-
-{
- 'variables': {
- 'variables': {
- # Conditional variables.
- 'conditions': [
- ['OS=="android"', {
- 'android_java_ui%': 1,
- }, {
- 'android_java_ui': 0,
- }],
- ['OS=="android" or OS=="ios"', {
- 'enable_background%': 0,
- }, {
- 'enable_background%': 1,
- }]
- ],
-
- # Google Now is disabled to prepare for its removal.
- # http://crbug.com/539674
- 'enable_google_now%': 0,
-
- # Use vulcanized HTML/CSS/JS resources to speed up WebUI (chrome://)
- # pages. https://github.com/polymer/vulcanize
- 'use_vulcanize%': 1,
- },
-
- # Anything in the conditions needs to be copied to the outer scope to be
- # accessible.
- 'enable_background%': '<(enable_background)',
- 'enable_google_now%': '<(enable_google_now)',
- 'android_java_ui%': '<(android_java_ui)',
- 'use_vulcanize%': '<(use_vulcanize)',
-
- # GN only, but defined here so BUILDFLAG works without ifdef.
- 'enable_package_mash_services%': 0,
-
- # Grit defines based on the feature flags. These must be manually added to
- # grit targets.
- 'chrome_grit_defines': [
- '-D', 'enable_background=<(enable_background)',
- '-D', 'enable_google_now=<(enable_google_now)',
- '-D', 'use_vulcanize=<(use_vulcanize)',
- ],
- },
-}
« no previous file with comments | « chrome/chrome_features.gyp ('k') | chrome/chrome_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698