diff options
author | altimin <altimin@chromium.org> | 2015-11-12 10:40:58 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-12 18:41:54 +0000 |
commit | 5abfd72765d29f36b577cdbb91ed7cfabc7560a7 (patch) | |
tree | 8dba17fb852599cf99a9cde079ac15c98a59b109 /ui/ozone/ozone.gni | |
parent | 2af4be3722e3dea304e3c5e18581521f9606248b (diff) | |
download | chromium_src-5abfd72765d29f36b577cdbb91ed7cfabc7560a7.zip chromium_src-5abfd72765d29f36b577cdbb91ed7cfabc7560a7.tar.gz chromium_src-5abfd72765d29f36b577cdbb91ed7cfabc7560a7.tar.bz2 |
Rename "test" ozone platform to "headless"
This platform normally has no graphical output or user input
support and has been used for running tests. Rename it to
"headless" to describe what it does rather than what we've
been using it for.
BUG=546953
Review URL: https://codereview.chromium.org/1410123003
Cr-Commit-Position: refs/heads/master@{#359336}
Diffstat (limited to 'ui/ozone/ozone.gni')
-rw-r--r-- | ui/ozone/ozone.gni | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/ozone/ozone.gni b/ui/ozone/ozone.gni index cb6f62e..15e909d 100644 --- a/ui/ozone/ozone.gni +++ b/ui/ozone/ozone.gni @@ -26,14 +26,14 @@ declare_args() { ozone_platform_egltest = false ozone_platform_gbm = false ozone_platform_ozonex = false - ozone_platform_test = false + ozone_platform_headless = false 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 @@ -42,13 +42,13 @@ declare_args() { 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_headless = true ozone_platform_egltest = true } } |