| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 'sources/': [ | 167 'sources/': [ |
| 168 ['exclude', '_udev\\.(h|cc)$'], | 168 ['exclude', '_udev\\.(h|cc)$'], |
| 169 ], | 169 ], |
| 170 }], | 170 }], |
| 171 ], | 171 ], |
| 172 }, | 172 }, |
| 173 { | 173 { |
| 174 'target_name': 'ozone_unittests', | 174 'target_name': 'ozone_unittests', |
| 175 'type': '<(gtest_target_type)', | 175 'type': '<(gtest_target_type)', |
| 176 'sources': [ | 176 'sources': [ |
| 177 'common/display_util_unittest.cc', |
| 177 'run_all_unittests.cc', | 178 'run_all_unittests.cc', |
| 178 ], | 179 ], |
| 179 'dependencies': [ | 180 'dependencies': [ |
| 180 'ozone_base', | 181 'ozone', |
| 181 '../../base/base.gyp:base', | 182 '../../base/base.gyp:base', |
| 182 '../../base/base.gyp:test_support_base', | 183 '../../base/base.gyp:test_support_base', |
| 183 '../../testing/gtest.gyp:gtest', | 184 '../../testing/gtest.gyp:gtest', |
| 184 '<@(external_ozone_platform_unittest_deps)', | 185 '<@(external_ozone_platform_unittest_deps)', |
| 185 '<@(internal_ozone_platform_unittest_deps)', | 186 '<@(internal_ozone_platform_unittest_deps)', |
| 186 ], | 187 ], |
| 187 }, | 188 }, |
| 188 ], | 189 ], |
| 189 'conditions': [ | 190 'conditions': [ |
| 190 ['<(ozone_platform_caca) == 1', { | 191 ['<(ozone_platform_caca) == 1', { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 207 'platform/dri/gbm.gypi', | 208 'platform/dri/gbm.gypi', |
| 208 ], | 209 ], |
| 209 }], | 210 }], |
| 210 ['<(ozone_platform_test) == 1', { | 211 ['<(ozone_platform_test) == 1', { |
| 211 'includes': [ | 212 'includes': [ |
| 212 'platform/test/test.gypi', | 213 'platform/test/test.gypi', |
| 213 ], | 214 ], |
| 214 }], | 215 }], |
| 215 ], | 216 ], |
| 216 } | 217 } |
| OLD | NEW |