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

Unified Diff: content/browser/BUILD.gn

Issue 1291703008: Rename is_chromeos in chrome/src. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: retry Created 5 years, 4 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 | « components/wallpaper/BUILD.gn ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/BUILD.gn
diff --git a/content/browser/BUILD.gn b/content/browser/BUILD.gn
index 39b66881f808c86039a60e84eb697731ab4c3fef..1a7b4458bb5b5ba3e845959b4319b8c00a8842f7 100644
--- a/content/browser/BUILD.gn
+++ b/content/browser/BUILD.gn
@@ -309,10 +309,10 @@ source_set("browser") {
# Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated
# given the interaction between os_chromeos and the feature flags for X11 and
# ozone, so do it all in one spot.
- if (is_chromeos || !use_ozone) {
+ if (use_cros_fe || !use_ozone) {
sources -= [ "power_save_blocker_ozone.cc" ]
}
- if (is_chromeos || !use_x11) {
+ if (use_cros_fe || !use_x11) {
sources -= [ "power_save_blocker_x11.cc" ]
}
@@ -321,7 +321,7 @@ source_set("browser") {
if (is_android) {
sources -= [ "geolocation/wifi_data_provider_common.cc" ]
}
- if (is_chromeos || (is_linux && !use_dbus)) {
+ if (use_cros_fe || (is_linux && !use_dbus)) {
sources -= [ "geolocation/wifi_data_provider_linux.cc" ]
}
if (is_linux && use_dbus) {
@@ -396,7 +396,7 @@ source_set("browser") {
]
}
- if (is_chromeos) {
+ if (use_cros_fe) {
sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ]
deps += [
"//chromeos",
« no previous file with comments | « components/wallpaper/BUILD.gn ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698