Chromium Code Reviews| 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 |
| } |
| } |
| } |