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

Unified Diff: build/common.gypi

Issue 1581803006: common.gypi: check for chromeos==1 rather than OS==chromeos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chromeos_use_sysroot
Patch Set: Created 4 years, 11 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 | no next file » | 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 e73e563dbc19ce32561c38cd616ec72ce725e500..dbc505c0c54c9b45a02d8123e222e771643f2924 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2393,14 +2393,12 @@
}],
],
}, { # chromecast!=1
+ # Build all platforms whose deps are in install-build-deps.sh.
+ # Only these platforms will be compile tested by buildbots.
+ 'ozone_platform_egltest%': 1,
'conditions': [
- ['OS=="chromeos"', {
+ ['chromeos==1', {
'ozone_platform_gbm%': 1,
- 'ozone_platform_egltest%': 1,
dnicoara 2016/02/17 22:59:32 Why is this removing ozone_platform_egltest?
Sam Clegg 2016/02/17 23:01:10 It was set in both sides of the condition so I jus
dnicoara 2016/02/18 14:24:35 Ah, I see, sorry, missed it.
- }, {
- # Build all platforms whose deps are in install-build-deps.sh.
- # Only these platforms will be compile tested by buildbots.
- 'ozone_platform_egltest%': 1,
}],
],
}],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698