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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 'sources/': [ | 169 'sources/': [ |
170 ['exclude', '_udev\\.(h|cc)$'], | 170 ['exclude', '_udev\\.(h|cc)$'], |
171 ], | 171 ], |
172 }], | 172 }], |
173 ], | 173 ], |
174 }, | 174 }, |
175 { | 175 { |
176 'target_name': 'ozone_unittests', | 176 'target_name': 'ozone_unittests', |
177 'type': '<(gtest_target_type)', | 177 'type': '<(gtest_target_type)', |
178 'sources': [ | 178 'sources': [ |
179 'common/display_util_unittest.cc', | |
180 'run_all_unittests.cc', | 179 'run_all_unittests.cc', |
181 ], | 180 ], |
182 'dependencies': [ | 181 'dependencies': [ |
183 'ozone', | 182 'ozone', |
184 '../../base/base.gyp:base', | 183 '../../base/base.gyp:base', |
185 '../../base/base.gyp:test_support_base', | 184 '../../base/base.gyp:test_support_base', |
186 '../../testing/gtest.gyp:gtest', | 185 '../../testing/gtest.gyp:gtest', |
187 '../gfx/gfx.gyp:gfx_geometry', | 186 '../gfx/gfx.gyp:gfx_geometry', |
188 '<@(external_ozone_platform_unittest_deps)', | 187 '<@(external_ozone_platform_unittest_deps)', |
189 '<@(internal_ozone_platform_unittest_deps)', | 188 '<@(internal_ozone_platform_unittest_deps)', |
(...skipping 26 matching lines...) Expand all Loading... |
216 'platform/drm/gbm.gypi', | 215 'platform/drm/gbm.gypi', |
217 ], | 216 ], |
218 }], | 217 }], |
219 ['<(ozone_platform_test) == 1', { | 218 ['<(ozone_platform_test) == 1', { |
220 'includes': [ | 219 'includes': [ |
221 'platform/test/test.gypi', | 220 'platform/test/test.gypi', |
222 ], | 221 ], |
223 }], | 222 }], |
224 ], | 223 ], |
225 } | 224 } |
OLD | NEW |