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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("exo") { | 7 source_set("exo") { |
8 sources = [ | 8 sources = [ |
9 "buffer.cc", | 9 "buffer.cc", |
10 "buffer.h", | 10 "buffer.h", |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "//base", | 78 "//base", |
79 "//cc", | 79 "//cc", |
80 "//components/user_manager", | 80 "//components/user_manager", |
81 "//gpu/command_buffer/client:gles2_interface", | 81 "//gpu/command_buffer/client:gles2_interface", |
82 "//skia", | 82 "//skia", |
83 "//testing/gtest", | 83 "//testing/gtest", |
84 "//ui/aura", | 84 "//ui/aura", |
85 "//ui/gfx", | 85 "//ui/gfx", |
86 "//ui/keyboard", | 86 "//ui/keyboard", |
87 "//ui/message_center", | 87 "//ui/message_center", |
| 88 "//ui/ozone", |
88 "//ui/views", | 89 "//ui/views", |
89 ] | 90 ] |
90 } | 91 } |
91 | 92 |
92 test("exo_unittests") { | 93 test("exo_unittests") { |
93 sources = [ | 94 sources = [ |
94 "test/run_all_unittests.cc", | 95 "test/run_all_unittests.cc", |
95 ] | 96 ] |
96 deps = [ | 97 deps = [ |
97 ":unit_tests", | 98 ":unit_tests", |
98 "//ash:test_support", | 99 "//ash:test_support", |
99 "//base", | 100 "//base", |
100 "//base/test:test_support", | 101 "//base/test:test_support", |
101 ] | 102 ] |
102 if (is_linux) { | 103 if (is_linux) { |
103 deps += [ "//components/exo/wayland:unit_tests" ] | 104 deps += [ "//components/exo/wayland:unit_tests" ] |
104 } | 105 } |
105 } | 106 } |
OLD | NEW |