| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") |
| 5 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 | 8 |
| 8 # The list of platforms that will be built. | 9 # The list of platforms that will be built. |
| 9 ozone_platforms = [] | 10 ozone_platforms = [] |
| 10 | 11 |
| 11 # Extra dependencies to pull into ui/ozone for built platforms. | 12 # Extra dependencies to pull into ui/ozone for built platforms. |
| 12 ozone_platform_deps = [] | 13 ozone_platform_deps = [] |
| 13 | 14 |
| 14 # Extra dependencies to pull into ozone_unittests for built platforms. | 15 # Extra dependencies to pull into ozone_unittests for built platforms. |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "common/display_util_unittest.cc", | 179 "common/display_util_unittest.cc", |
| 179 "run_all_unittests.cc", | 180 "run_all_unittests.cc", |
| 180 ] | 181 ] |
| 181 | 182 |
| 182 deps = [ | 183 deps = [ |
| 183 "//base/test:test_support", | 184 "//base/test:test_support", |
| 184 "//testing/gtest", | 185 "//testing/gtest", |
| 185 "//ui/gfx/geometry", | 186 "//ui/gfx/geometry", |
| 186 ] + ozone_platform_test_deps | 187 ] + ozone_platform_test_deps |
| 187 } | 188 } |
| OLD | NEW |