| 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", |
| 11 "buffer.h", | 11 "buffer.h", |
| 12 "compositor_frame_sink.cc", | |
| 13 "compositor_frame_sink.h", | |
| 14 "compositor_frame_sink_holder.cc", | |
| 15 "compositor_frame_sink_holder.h", | |
| 16 "display.cc", | 12 "display.cc", |
| 17 "display.h", | 13 "display.h", |
| 18 "gamepad.cc", | 14 "gamepad.cc", |
| 19 "gamepad.h", | 15 "gamepad.h", |
| 20 "keyboard.cc", | 16 "keyboard.cc", |
| 21 "keyboard.h", | 17 "keyboard.h", |
| 22 "keyboard_delegate.h", | 18 "keyboard_delegate.h", |
| 23 "notification_surface.cc", | 19 "notification_surface.cc", |
| 24 "notification_surface.h", | 20 "notification_surface.h", |
| 25 "notification_surface_manager.h", | 21 "notification_surface_manager.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "test/run_all_unittests.cc", | 147 "test/run_all_unittests.cc", |
| 152 ] | 148 ] |
| 153 | 149 |
| 154 deps = [ | 150 deps = [ |
| 155 ":unit_tests", | 151 ":unit_tests", |
| 156 "//ash/test:ash_with_aura_test_support", | 152 "//ash/test:ash_with_aura_test_support", |
| 157 "//ash/test:test_support_without_content", | 153 "//ash/test:test_support_without_content", |
| 158 "//base", | 154 "//base", |
| 159 "//base/test:test_support", | 155 "//base/test:test_support", |
| 160 "//device/gamepad:test_helpers", | 156 "//device/gamepad:test_helpers", |
| 161 "//mojo/edk/embedder:headers", | |
| 162 ] | 157 ] |
| 163 | 158 |
| 164 data_deps = [ | 159 data_deps = [ |
| 165 "//ash/common/strings:ash_test_strings", | 160 "//ash/common/strings:ash_test_strings", |
| 166 "//ash/resources:ash_test_resources_100_percent", | 161 "//ash/resources:ash_test_resources_100_percent", |
| 167 "//ash/resources:ash_test_resources_200_percent", | 162 "//ash/resources:ash_test_resources_200_percent", |
| 168 ] | 163 ] |
| 169 | 164 |
| 170 if (is_linux) { | 165 if (is_linux) { |
| 171 deps += [ "//components/exo/wayland:unit_tests" ] | 166 deps += [ "//components/exo/wayland:unit_tests" ] |
| 172 } | 167 } |
| 173 } | 168 } |
| OLD | NEW |