| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Normally, the external_ozone_platform* variables below can be | 8 # Normally, the external_ozone_platform* variables below can be |
| 9 # overridden by supplement.gypi which must exist exactly one level | 9 # overridden by supplement.gypi which must exist exactly one level |
| 10 # below the top-level src directory. They can now also be set in | 10 # below the top-level src directory. They can now also be set in |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 ['<(ozone_platform_caca) == 1', { | 203 ['<(ozone_platform_caca) == 1', { |
| 204 'includes': [ | 204 'includes': [ |
| 205 'platform/caca/caca.gypi', | 205 'platform/caca/caca.gypi', |
| 206 ], | 206 ], |
| 207 }], | 207 }], |
| 208 ['<(ozone_platform_cast) == 1', { | 208 ['<(ozone_platform_cast) == 1', { |
| 209 'includes': [ | 209 'includes': [ |
| 210 'platform/cast/cast.gypi', | 210 'platform/cast/cast.gypi', |
| 211 ], | 211 ], |
| 212 }], | 212 }], |
| 213 ['<(ozone_platform_drm) == 1 or <(ozone_platform_gbm) == 1', { |
| 214 'includes': [ |
| 215 'platform/drm/drm.gypi', |
| 216 ], |
| 217 }], |
| 213 ['<(ozone_platform_egltest) == 1', { | 218 ['<(ozone_platform_egltest) == 1', { |
| 214 'includes': [ | 219 'includes': [ |
| 215 'platform/egltest/egltest.gypi', | 220 'platform/egltest/egltest.gypi', |
| 216 ], | 221 ], |
| 217 }], | 222 }], |
| 218 ['<(ozone_platform_gbm) == 1', { | 223 ['<(ozone_platform_gbm) == 1', { |
| 219 'includes': [ | 224 'includes': [ |
| 220 'platform/drm/gbm.gypi', | 225 'platform/drm/gbm.gypi', |
| 221 ], | 226 ], |
| 222 }], | 227 }], |
| 223 ['<(ozone_platform_test) == 1', { | 228 ['<(ozone_platform_test) == 1', { |
| 224 'includes': [ | 229 'includes': [ |
| 225 'platform/test/test.gypi', | 230 'platform/test/test.gypi', |
| 226 ], | 231 ], |
| 227 }], | 232 }], |
| 228 ], | 233 ], |
| 229 } | 234 } |
| OLD | NEW |