| 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("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("tests") { | 8 source_set("tests") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "property_type_converters_unittest.cc", | 12 "property_type_converters_unittest.cc", |
| 13 "window_server_test_suite.cc", | |
| 14 "window_server_test_suite.h", | |
| 15 ] | 13 ] |
| 16 | 14 |
| 17 deps = [ | 15 deps = [ |
| 18 "//base", | 16 "//base", |
| 19 "//base/test:test_support", | 17 "//base/test:test_support", |
| 20 "//mojo/common:common_base", | 18 "//mojo/common:common_base", |
| 21 "//mojo/edk/system", | 19 "//mojo/edk/system", |
| 22 "//mojo/public/cpp/system", | 20 "//mojo/public/cpp/system", |
| 23 "//services/service_manager/public/cpp", | 21 "//services/service_manager/public/cpp", |
| 24 "//services/ui/public/cpp", | 22 "//services/ui/public/cpp", |
| 25 "//testing/gtest", | 23 "//testing/gtest", |
| 26 "//ui/gfx:test_support", | 24 "//ui/gfx:test_support", |
| 27 "//ui/gfx/geometry", | 25 "//ui/gfx/geometry", |
| 28 "//ui/gfx/geometry/mojo", | 26 "//ui/gfx/geometry/mojo", |
| 29 ] | 27 ] |
| 30 | 28 |
| 31 if (use_x11) { | 29 if (use_x11) { |
| 32 deps += [ "//ui/gfx/x" ] | 30 deps += [ "//ui/gfx/x" ] |
| 33 } | 31 } |
| 34 } | 32 } |
| OLD | NEW |