| 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 'external_ozone_platforms': [], | 8 'external_ozone_platforms': [], |
| 9 'external_ozone_platform_files': [], | 9 'external_ozone_platform_files': [], |
| 10 'external_ozone_platform_deps': [], | 10 'external_ozone_platform_deps': [], |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 }], | 83 }], |
| 84 ] | 84 ] |
| 85 }, | 85 }, |
| 86 ], | 86 ], |
| 87 'conditions': [ | 87 'conditions': [ |
| 88 ['<(ozone_platform_caca) == 1', { | 88 ['<(ozone_platform_caca) == 1', { |
| 89 'includes': [ | 89 'includes': [ |
| 90 'platform/caca/caca.gypi', | 90 'platform/caca/caca.gypi', |
| 91 ], | 91 ], |
| 92 }], | 92 }], |
| 93 ['<(ozone_platform_dri) == 1', { | 93 ['<(ozone_platform_dri) == 1 or <(ozone_platform_gbm) == 1', { |
| 94 'includes': [ | 94 'includes': [ |
| 95 'platform/dri/dri.gypi', | 95 'platform/dri/dri.gypi', |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ['<(ozone_platform_egltest) == 1', { | 98 ['<(ozone_platform_egltest) == 1', { |
| 99 'includes': [ | 99 'includes': [ |
| 100 'platform/egltest/egltest.gypi', | 100 'platform/egltest/egltest.gypi', |
| 101 ], | 101 ], |
| 102 }], | 102 }], |
| 103 ['<(ozone_platform_gbm) == 1', { |
| 104 'includes': [ |
| 105 'platform/dri/gbm.gypi', |
| 106 ], |
| 107 }], |
| 103 ['<(ozone_platform_test) == 1', { | 108 ['<(ozone_platform_test) == 1', { |
| 104 'includes': [ | 109 'includes': [ |
| 105 'platform/test/test.gypi', | 110 'platform/test/test.gypi', |
| 106 ], | 111 ], |
| 107 }], | 112 }], |
| 108 ], | 113 ], |
| 109 } | 114 } |
| OLD | NEW |