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

Unified Diff: build/common.gypi

Issue 1360373002: [Chromecast] Disable libpci on Chromecast builds by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Update GYP to default to false for cast builds Created 5 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 | « no previous file | gpu/config/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 6ff25506a2b3063abbe9d6a0a114de89a05364c9..7057b5be2e66394b2c2d6b4111e0adea19244775 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -110,9 +110,14 @@
'use_aura%': 1,
}],
- ['chromecast==1 and OS!="android"', {
- 'embedded%': 1,
- 'use_ozone%': 1,
+ ['chromecast==1', {
+ 'use_libpci': 0,
+ 'conditions': [
+ ['OS!="android"', {
+ 'embedded%': 1,
+ 'use_ozone%': 1,
+ }],
+ ],
}],
# Ozone uses Aura.
« no previous file with comments | « no previous file | gpu/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698