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

Unified Diff: ui/ozone/ozone.gni

Issue 1410123003: Rename "test" ozone platform to "headless" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed egltest => eglheadless, test => headless Created 5 years, 2 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
Index: ui/ozone/ozone.gni
diff --git a/ui/ozone/ozone.gni b/ui/ozone/ozone.gni
index cb6f62ee28c7889697ebb5a4f9d743ea7969b9ad..2e7d86256bb89d97f8c7e0918c7f821c054ba488 100644
--- a/ui/ozone/ozone.gni
+++ b/ui/ozone/ozone.gni
@@ -1,4 +1,4 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
+# Copyright 2015 The Chromium Authors. All rights reserved.
spang 2015/10/29 15:46:35 don't update copyright
altimin 2015/10/29 16:06:10 Done.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -23,33 +23,34 @@ declare_args() {
# Enable individual platforms.
ozone_platform_caca = false
ozone_platform_cast = false
- ozone_platform_egltest = false
+ ozone_platform_eglheadless = false
ozone_platform_gbm = false
ozone_platform_ozonex = false
- ozone_platform_test = false
+ ozone_platform_headless = false
+ ozone_platform_headless = false
spang 2015/10/29 15:46:35 dupe
altimin 2015/10/29 16:06:10 Done.
if (ozone_auto_platforms) {
if (is_chromecast) {
# The default platform used at runtime is "cast".
ozone_platform = "cast"
ozone_platform_cast = true
- ozone_platform_test = true
+ ozone_platform_headless = true
# For desktop Chromecast builds, override the default "cast" platform with
- # --ozone_platform=egltest
+ # --ozone_platform=eglheadless
if (target_os == "linux" && target_cpu != "arm") {
- ozone_platform_egltest = true
+ ozone_platform_eglheadless = true
ozone_platform_ozonex = true
}
} else {
- # Use test as the default platform.
- ozone_platform = "test"
+ # Use headless as the default platform.
+ ozone_platform = "headless"
# Build all platforms whose deps are in install-build-deps.sh.
# Only these platforms will be compile tested by buildbots.
ozone_platform_gbm = true
- ozone_platform_test = true
- ozone_platform_egltest = true
+ ozone_platform_headless = true
+ ozone_platform_eglheadless = true
}
}
}
« ui/ozone/BUILD.gn ('K') | « ui/ozone/BUILD.gn ('k') | ui/ozone/ozone.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698