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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("exo") { | 8 source_set("exo") { |
9 sources = [ | 9 sources = [ |
10 "buffer.cc", | 10 "buffer.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "wm_helper_ash.h", | 47 "wm_helper_ash.h", |
48 "wm_helper_mus.cc", | 48 "wm_helper_mus.cc", |
49 "wm_helper_mus.h", | 49 "wm_helper_mus.h", |
50 ] | 50 ] |
51 | 51 |
52 deps = [ | 52 deps = [ |
53 "//ash", | 53 "//ash", |
54 "//ash/public/cpp", | 54 "//ash/public/cpp", |
55 "//base", | 55 "//base", |
56 "//cc", | 56 "//cc", |
57 "//cc/surfaces:surfaces", | 57 "//cc/ipc:interfaces", |
| 58 "//cc/surfaces", |
58 "//device/gamepad", | 59 "//device/gamepad", |
59 "//gpu", | 60 "//gpu", |
60 "//gpu/command_buffer/client:gles2_interface", | 61 "//gpu/command_buffer/client:gles2_interface", |
61 "//services/ui/public/cpp", | |
62 "//skia", | 62 "//skia", |
63 "//ui/aura", | 63 "//ui/aura", |
64 "//ui/compositor", | 64 "//ui/compositor", |
65 "//ui/display/manager", | 65 "//ui/display/manager", |
66 "//ui/events/devices:devices", | 66 "//ui/events/devices:devices", |
67 "//ui/gfx", | 67 "//ui/gfx", |
68 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
69 "//ui/gl", | 69 "//ui/gl", |
70 "//ui/views", | 70 "//ui/views", |
71 "//ui/views/mus", | 71 "//ui/views/mus", |
72 "//ui/wm:wm", | 72 "//ui/wm", |
73 ] | 73 ] |
74 | 74 |
75 if (is_chromeos) { | 75 if (is_chromeos) { |
76 deps += [ "//chromeos" ] | 76 deps += [ "//chromeos" ] |
77 } | 77 } |
78 } | 78 } |
79 | 79 |
80 source_set("test_support") { | 80 source_set("test_support") { |
81 testonly = true | 81 testonly = true |
82 | 82 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "//skia", | 133 "//skia", |
134 "//testing/gmock", | 134 "//testing/gmock", |
135 "//testing/gtest", | 135 "//testing/gtest", |
136 "//ui/aura", | 136 "//ui/aura", |
137 "//ui/events:dom_keycode_converter", | 137 "//ui/events:dom_keycode_converter", |
138 "//ui/events:test_support", | 138 "//ui/events:test_support", |
139 "//ui/gfx", | 139 "//ui/gfx", |
140 "//ui/keyboard", | 140 "//ui/keyboard", |
141 "//ui/message_center", | 141 "//ui/message_center", |
142 "//ui/views", | 142 "//ui/views", |
143 "//ui/wm:wm", | 143 "//ui/wm", |
144 ] | 144 ] |
145 | 145 |
146 if (use_ozone) { | 146 if (use_ozone) { |
147 deps += [ "//ui/ozone" ] | 147 deps += [ "//ui/ozone" ] |
148 } | 148 } |
149 } | 149 } |
150 | 150 |
151 test("exo_unittests") { | 151 test("exo_unittests") { |
152 sources = [ | 152 sources = [ |
153 "test/run_all_unittests.cc", | 153 "test/run_all_unittests.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
166 data_deps = [ | 166 data_deps = [ |
167 "//ash/common/strings:ash_test_strings", | 167 "//ash/common/strings:ash_test_strings", |
168 "//ash/resources:ash_test_resources_100_percent", | 168 "//ash/resources:ash_test_resources_100_percent", |
169 "//ash/resources:ash_test_resources_200_percent", | 169 "//ash/resources:ash_test_resources_200_percent", |
170 ] | 170 ] |
171 | 171 |
172 if (is_linux) { | 172 if (is_linux) { |
173 deps += [ "//components/exo/wayland:unit_tests" ] | 173 deps += [ "//components/exo/wayland:unit_tests" ] |
174 } | 174 } |
175 } | 175 } |
OLD | NEW |