| 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 18 matching lines...) Expand all Loading... |
| 29 "sub_surface.cc", | 29 "sub_surface.cc", |
| 30 "sub_surface.h", | 30 "sub_surface.h", |
| 31 "surface.cc", | 31 "surface.cc", |
| 32 "surface.h", | 32 "surface.h", |
| 33 "surface_delegate.h", | 33 "surface_delegate.h", |
| 34 "surface_observer.h", | 34 "surface_observer.h", |
| 35 "surface_property.h", | 35 "surface_property.h", |
| 36 "touch.cc", | 36 "touch.cc", |
| 37 "touch.h", | 37 "touch.h", |
| 38 "touch_delegate.h", | 38 "touch_delegate.h", |
| 39 "wm_helper.cc", |
| 40 "wm_helper.h", |
| 39 ] | 41 ] |
| 40 | 42 |
| 41 deps = [ | 43 deps = [ |
| 42 "//ash", | 44 "//ash", |
| 43 "//base", | 45 "//base", |
| 44 "//cc", | 46 "//cc", |
| 45 "//cc/surfaces:surfaces", | 47 "//cc/surfaces:surfaces", |
| 46 "//device/gamepad", | 48 "//device/gamepad", |
| 47 "//gpu", | 49 "//gpu", |
| 48 "//gpu/command_buffer/client:gles2_interface", | 50 "//gpu/command_buffer/client:gles2_interface", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ] | 147 ] |
| 146 | 148 |
| 147 if (use_x11) { | 149 if (use_x11) { |
| 148 deps += [ "//tools/xdisplaycheck" ] | 150 deps += [ "//tools/xdisplaycheck" ] |
| 149 } | 151 } |
| 150 | 152 |
| 151 if (is_linux) { | 153 if (is_linux) { |
| 152 deps += [ "//components/exo/wayland:unit_tests" ] | 154 deps += [ "//components/exo/wayland:unit_tests" ] |
| 153 } | 155 } |
| 154 } | 156 } |
| OLD | NEW |