| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 '<@(internal_ozone_platform_unittest_deps)', | 189 '<@(internal_ozone_platform_unittest_deps)', |
| 190 ], | 190 ], |
| 191 }, | 191 }, |
| 192 ], | 192 ], |
| 193 'conditions': [ | 193 'conditions': [ |
| 194 ['<(ozone_platform_caca) == 1', { | 194 ['<(ozone_platform_caca) == 1', { |
| 195 'includes': [ | 195 'includes': [ |
| 196 'platform/caca/caca.gypi', | 196 'platform/caca/caca.gypi', |
| 197 ], | 197 ], |
| 198 }], | 198 }], |
| 199 ['<(ozone_platform_cast) == 1', { |
| 200 'includes': [ |
| 201 'platform/cast/cast.gypi', |
| 202 ], |
| 203 }], |
| 199 ['<(ozone_platform_dri) == 1 or <(ozone_platform_drm) == 1 or <(ozone_platfo
rm_gbm) == 1', { | 204 ['<(ozone_platform_dri) == 1 or <(ozone_platform_drm) == 1 or <(ozone_platfo
rm_gbm) == 1', { |
| 200 'includes': [ | 205 'includes': [ |
| 201 'platform/drm/drm.gypi', | 206 'platform/drm/drm.gypi', |
| 202 ], | 207 ], |
| 203 }], | 208 }], |
| 204 ['<(ozone_platform_egltest) == 1', { | 209 ['<(ozone_platform_egltest) == 1', { |
| 205 'includes': [ | 210 'includes': [ |
| 206 'platform/egltest/egltest.gypi', | 211 'platform/egltest/egltest.gypi', |
| 207 ], | 212 ], |
| 208 }], | 213 }], |
| 209 ['<(ozone_platform_gbm) == 1', { | 214 ['<(ozone_platform_gbm) == 1', { |
| 210 'includes': [ | 215 'includes': [ |
| 211 'platform/drm/gbm.gypi', | 216 'platform/drm/gbm.gypi', |
| 212 ], | 217 ], |
| 213 }], | 218 }], |
| 214 ['<(ozone_platform_test) == 1', { | 219 ['<(ozone_platform_test) == 1', { |
| 215 'includes': [ | 220 'includes': [ |
| 216 'platform/test/test.gypi', | 221 'platform/test/test.gypi', |
| 217 ], | 222 ], |
| 218 }], | 223 }], |
| 219 ], | 224 ], |
| 220 } | 225 } |
| OLD | NEW |