| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 'type': '<(gtest_target_type)', | 176 'type': '<(gtest_target_type)', |
| 177 'sources': [ | 177 'sources': [ |
| 178 'common/display_util_unittest.cc', | 178 'common/display_util_unittest.cc', |
| 179 'run_all_unittests.cc', | 179 'run_all_unittests.cc', |
| 180 ], | 180 ], |
| 181 'dependencies': [ | 181 'dependencies': [ |
| 182 'ozone', | 182 'ozone', |
| 183 '../../base/base.gyp:base', | 183 '../../base/base.gyp:base', |
| 184 '../../base/base.gyp:test_support_base', | 184 '../../base/base.gyp:test_support_base', |
| 185 '../../testing/gtest.gyp:gtest', | 185 '../../testing/gtest.gyp:gtest', |
| 186 '../gfx/gfx.gyp:gfx_geometry', |
| 186 '<@(external_ozone_platform_unittest_deps)', | 187 '<@(external_ozone_platform_unittest_deps)', |
| 187 '<@(internal_ozone_platform_unittest_deps)', | 188 '<@(internal_ozone_platform_unittest_deps)', |
| 188 ], | 189 ], |
| 189 }, | 190 }, |
| 190 ], | 191 ], |
| 191 'conditions': [ | 192 'conditions': [ |
| 192 ['<(ozone_platform_caca) == 1', { | 193 ['<(ozone_platform_caca) == 1', { |
| 193 'includes': [ | 194 'includes': [ |
| 194 'platform/caca/caca.gypi', | 195 'platform/caca/caca.gypi', |
| 195 ], | 196 ], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 209 'platform/dri/gbm.gypi', | 210 'platform/dri/gbm.gypi', |
| 210 ], | 211 ], |
| 211 }], | 212 }], |
| 212 ['<(ozone_platform_test) == 1', { | 213 ['<(ozone_platform_test) == 1', { |
| 213 'includes': [ | 214 'includes': [ |
| 214 'platform/test/test.gypi', | 215 'platform/test/test.gypi', |
| 215 ], | 216 ], |
| 216 }], | 217 }], |
| 217 ], | 218 ], |
| 218 } | 219 } |
| OLD | NEW |