| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # Select platforms automatically. Turn this off for manual control. | 8 # Select platforms automatically. Turn this off for manual control. |
| 9 ozone_auto_platforms = true | 9 ozone_auto_platforms = true |
| 10 |
| 11 # This enables memory-mapped access to accelerated graphics buffers via the |
| 12 # VGEM ("virtual GEM") driver. This is currently only available on Chrome OS |
| 13 # kernels and affects code in the GBM ozone platform. |
| 14 # TODO(dshwang): remove this flag when all gbm hardware supports vgem map. |
| 15 # crbug.com/519587 |
| 16 use_vgem_map = false |
| 10 } | 17 } |
| 11 | 18 |
| 12 declare_args() { | 19 declare_args() { |
| 13 # The platform that will be active by default. | 20 # The platform that will be active by default. |
| 14 ozone_platform = "" | 21 ozone_platform = "" |
| 15 | 22 |
| 16 # Enable individual platforms. | 23 # Enable individual platforms. |
| 17 ozone_platform_caca = false | 24 ozone_platform_caca = false |
| 18 ozone_platform_cast = false | 25 ozone_platform_cast = false |
| 19 ozone_platform_egltest = false | 26 ozone_platform_egltest = false |
| (...skipping 19 matching lines...) Expand all Loading... |
| 39 ozone_platform = "test" | 46 ozone_platform = "test" |
| 40 | 47 |
| 41 # Build all platforms whose deps are in install-build-deps.sh. | 48 # Build all platforms whose deps are in install-build-deps.sh. |
| 42 # Only these platforms will be compile tested by buildbots. | 49 # Only these platforms will be compile tested by buildbots. |
| 43 ozone_platform_gbm = true | 50 ozone_platform_gbm = true |
| 44 ozone_platform_test = true | 51 ozone_platform_test = true |
| 45 ozone_platform_egltest = true | 52 ozone_platform_egltest = true |
| 46 } | 53 } |
| 47 } | 54 } |
| 48 } | 55 } |
| OLD | NEW |