| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 | 6 |
| 7 source_set("wayland") { | 7 source_set("wayland") { |
| 8 sources = [ | 8 sources = [ |
| 9 "scoped_wl_types.cc", | 9 "scoped_wl_types.cc", |
| 10 "scoped_wl_types.h", | 10 "scoped_wl_types.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 source_set("unit_tests") { | 29 source_set("unit_tests") { |
| 30 testonly = true | 30 testonly = true |
| 31 | 31 |
| 32 sources = [ | 32 sources = [ |
| 33 "server_unittest.cc", | 33 "server_unittest.cc", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 ":wayland", | 37 ":wayland", |
| 38 "//base", | |
| 39 "//components/exo", | |
| 40 "//testing/gtest", | 38 "//testing/gtest", |
| 41 "//third_party/wayland:wayland_client", | 39 "//third_party/wayland:wayland_client", |
| 42 ] | 40 ] |
| 43 } | 41 } |
| OLD | NEW |