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

Side by Side Diff: build/config/features.gni

Issue 2760403003: Remove enable_media_router. (Closed)
Patch Set: . Created 3 years, 8 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
« no previous file with comments | « build/config/BUILD.gn ('k') | chrome/app/generated_resources.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # ============================================= 5 # =============================================
6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
7 # ============================================= 7 # =============================================
8 # 8 #
9 # These flags are effectively global. Your feature flag should go near the 9 # These flags are effectively global. Your feature flag should go near the
10 # code it controls. Most of these items are here now because they control 10 # code it controls. Most of these items are here now because they control
(...skipping 12 matching lines...) Expand all
23 declare_args() { 23 declare_args() {
24 # Enables Native Client support. 24 # Enables Native Client support.
25 # Temporarily disable nacl on arm64 linux to get rid of compilation errors. 25 # Temporarily disable nacl on arm64 linux to get rid of compilation errors.
26 # TODO(mcgrathr): When mipsel-nacl-clang is available, drop the exclusion. 26 # TODO(mcgrathr): When mipsel-nacl-clang is available, drop the exclusion.
27 enable_nacl = !is_ios && !is_android && !is_chromecast && 27 enable_nacl = !is_ios && !is_android && !is_chromecast &&
28 current_cpu != "mipsel" && !(is_linux && target_cpu == "arm64") 28 current_cpu != "mipsel" && !(is_linux && target_cpu == "arm64")
29 29
30 # Non-SFI is not yet supported on mipsel 30 # Non-SFI is not yet supported on mipsel
31 enable_nacl_nonsfi = current_cpu != "mipsel" 31 enable_nacl_nonsfi = current_cpu != "mipsel"
32 32
33 # Enables the Media Router.
34 enable_media_router = !is_ios && !is_chromecast
35
36 # Enables proprietary codecs and demuxers; e.g. H264, AAC, MP3, and MP4. 33 # Enables proprietary codecs and demuxers; e.g. H264, AAC, MP3, and MP4.
37 # We always build Google Chrome and Chromecast with proprietary codecs. 34 # We always build Google Chrome and Chromecast with proprietary codecs.
38 # 35 #
39 # Note: this flag is used by WebRTC which is DEPSed into Chrome. Moving it 36 # Note: this flag is used by WebRTC which is DEPSed into Chrome. Moving it
40 # out of //build will require using the build_overrides directory. 37 # out of //build will require using the build_overrides directory.
41 proprietary_codecs = is_chrome_branded || is_chromecast 38 proprietary_codecs = is_chrome_branded || is_chromecast
42 39
43 # Variable safe_browsing is used to control the build time configuration for 40 # Variable safe_browsing is used to control the build time configuration for
44 # safe browsing feature. Safe browsing can be compiled in 3 different levels: 41 # safe browsing feature. Safe browsing can be compiled in 3 different levels:
45 # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an 42 # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an
(...skipping 21 matching lines...) Expand all
67 use_gconf = is_linux && !is_chromeos && !is_chromecast 64 use_gconf = is_linux && !is_chromeos && !is_chromecast
68 65
69 use_gio = is_linux && !is_chromeos && !is_chromecast 66 use_gio = is_linux && !is_chromeos && !is_chromecast
70 } 67 }
71 # 68 #
72 # ============================================= 69 # =============================================
73 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 70 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
74 # ============================================= 71 # =============================================
75 # 72 #
76 # See comment at the top. 73 # See comment at the top.
OLDNEW
« no previous file with comments | « build/config/BUILD.gn ('k') | chrome/app/generated_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698