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", | |
89 "//ui/views", | 88 "//ui/views", |
90 ] | 89 ] |
91 } | 90 } |
92 | 91 |
93 test("exo_unittests") { | 92 test("exo_unittests") { |
94 sources = [ | 93 sources = [ |
95 "test/run_all_unittests.cc", | 94 "test/run_all_unittests.cc", |
96 ] | 95 ] |
97 deps = [ | 96 deps = [ |
98 ":unit_tests", | 97 ":unit_tests", |
99 "//ash:test_support", | 98 "//ash:test_support", |
100 "//base", | 99 "//base", |
101 "//base/test:test_support", | 100 "//base/test:test_support", |
102 ] | 101 ] |
103 if (is_linux) { | 102 if (is_linux) { |
104 deps += [ "//components/exo/wayland:unit_tests" ] | 103 deps += [ "//components/exo/wayland:unit_tests" ] |
105 } | 104 } |
106 } | 105 } |
OLD | NEW |