| 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 "display.cc", | 12 "display.cc", |
| 13 "display.h", | 13 "display.h", |
| 14 "gamepad.cc", | 14 "gamepad.cc", |
| 15 "gamepad.h", | 15 "gamepad.h", |
| 16 "keyboard.cc", | 16 "keyboard.cc", |
| 17 "keyboard.h", | 17 "keyboard.h", |
| 18 "keyboard_delegate.h", | 18 "keyboard_delegate.h", |
| 19 "keyboard_device_configuration_delegate.h", |
| 19 "notification_surface.cc", | 20 "notification_surface.cc", |
| 20 "notification_surface.h", | 21 "notification_surface.h", |
| 21 "notification_surface_manager.h", | 22 "notification_surface_manager.h", |
| 22 "pointer.cc", | 23 "pointer.cc", |
| 23 "pointer.h", | 24 "pointer.h", |
| 24 "pointer_delegate.h", | 25 "pointer_delegate.h", |
| 25 "shared_memory.cc", | 26 "shared_memory.cc", |
| 26 "shared_memory.h", | 27 "shared_memory.h", |
| 27 "shell_surface.cc", | 28 "shell_surface.cc", |
| 28 "shell_surface.h", | 29 "shell_surface.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 51 "//cc", | 52 "//cc", |
| 52 "//cc/surfaces:surfaces", | 53 "//cc/surfaces:surfaces", |
| 53 "//device/gamepad", | 54 "//device/gamepad", |
| 54 "//gpu", | 55 "//gpu", |
| 55 "//gpu/command_buffer/client:gles2_interface", | 56 "//gpu/command_buffer/client:gles2_interface", |
| 56 "//services/ui/public/cpp", | 57 "//services/ui/public/cpp", |
| 57 "//skia", | 58 "//skia", |
| 58 "//ui/aura", | 59 "//ui/aura", |
| 59 "//ui/compositor", | 60 "//ui/compositor", |
| 60 "//ui/display/manager", | 61 "//ui/display/manager", |
| 62 "//ui/events/devices:devices", |
| 61 "//ui/gfx", | 63 "//ui/gfx", |
| 62 "//ui/gfx/geometry", | 64 "//ui/gfx/geometry", |
| 63 "//ui/gl", | 65 "//ui/gl", |
| 64 "//ui/views", | 66 "//ui/views", |
| 65 "//ui/views/mus", | 67 "//ui/views/mus", |
| 66 "//ui/wm:wm", | 68 "//ui/wm:wm", |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 if (is_chromeos) { | 71 if (is_chromeos) { |
| 70 deps += [ "//chromeos" ] | 72 deps += [ "//chromeos" ] |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 data_deps = [ | 161 data_deps = [ |
| 160 "//ash/common/strings:ash_test_strings", | 162 "//ash/common/strings:ash_test_strings", |
| 161 "//ash/resources:ash_test_resources_100_percent", | 163 "//ash/resources:ash_test_resources_100_percent", |
| 162 "//ash/resources:ash_test_resources_200_percent", | 164 "//ash/resources:ash_test_resources_200_percent", |
| 163 ] | 165 ] |
| 164 | 166 |
| 165 if (is_linux) { | 167 if (is_linux) { |
| 166 deps += [ "//components/exo/wayland:unit_tests" ] | 168 deps += [ "//components/exo/wayland:unit_tests" ] |
| 167 } | 169 } |
| 168 } | 170 } |
| OLD | NEW |