Chromium Code Reviews| 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 declare_args() { | 5 declare_args() { |
| 6 # Select platforms automatically. Turn this off for manual control. | 6 # Select platforms automatically. Turn this off for manual control. |
| 7 ozone_auto_platforms = true | 7 ozone_auto_platforms = true |
| 8 | |
| 9 # TODO(dshwang): remove this flag when all gbm hardware supports vgem map. | |
| 10 # crbug.com/519587 | |
| 11 use_vgem_map = false | |
|
brettw
2015/08/24 21:53:38
Can you call this ozone_use_vgem_map instead? Does
spang
2015/08/24 22:09:09
The scope is narrower than ozone, it applies to Ch
dshwang
2015/08/26 12:02:43
got it. I'll rename it to CHROMEOS_USE_VGEM_MAP wi
dshwang
2015/08/26 14:18:02
I didn't rename it. done to update comments.
| |
| 8 } | 12 } |
| 9 | 13 |
| 10 declare_args() { | 14 declare_args() { |
| 11 # The platform that will be active by default. | 15 # The platform that will be active by default. |
| 12 ozone_platform = "" | 16 ozone_platform = "" |
| 13 | 17 |
| 14 # Enable individual platforms. | 18 # Enable individual platforms. |
| 15 ozone_platform_caca = false | 19 ozone_platform_caca = false |
| 16 ozone_platform_drm = false | 20 ozone_platform_drm = false |
| 17 ozone_platform_egltest = false | 21 ozone_platform_egltest = false |
| 18 ozone_platform_gbm = false | 22 ozone_platform_gbm = false |
| 19 ozone_platform_ozonex = false | 23 ozone_platform_ozonex = false |
| 20 ozone_platform_test = false | 24 ozone_platform_test = false |
| 21 | 25 |
| 22 if (ozone_auto_platforms) { | 26 if (ozone_auto_platforms) { |
| 23 # Use test as the default platform. | 27 # Use test as the default platform. |
| 24 ozone_platform = "test" | 28 ozone_platform = "test" |
| 25 | 29 |
| 26 # Build all platforms whose deps are in install-build-deps.sh. | 30 # Build all platforms whose deps are in install-build-deps.sh. |
| 27 # Only these platforms will be compile tested by buildbots. | 31 # Only these platforms will be compile tested by buildbots. |
| 28 ozone_platform_drm = true | 32 ozone_platform_drm = true |
| 29 ozone_platform_test = true | 33 ozone_platform_test = true |
| 30 ozone_platform_egltest = true | 34 ozone_platform_egltest = true |
| 31 } | 35 } |
| 32 } | 36 } |
| OLD | NEW |