| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 "//ash", | 48 "//ash", |
| 49 "//base", | 49 "//base", |
| 50 "//cc", | 50 "//cc", |
| 51 "//cc/surfaces:surfaces", | 51 "//cc/surfaces:surfaces", |
| 52 "//device/gamepad", | 52 "//device/gamepad", |
| 53 "//gpu", | 53 "//gpu", |
| 54 "//gpu/command_buffer/client:gles2_interface", | 54 "//gpu/command_buffer/client:gles2_interface", |
| 55 "//services/ui/public/cpp", |
| 55 "//skia", | 56 "//skia", |
| 56 "//ui/aura", | 57 "//ui/aura", |
| 57 "//ui/compositor", | 58 "//ui/compositor", |
| 58 "//ui/gfx", | 59 "//ui/gfx", |
| 59 "//ui/gfx/geometry", | 60 "//ui/gfx/geometry", |
| 60 "//ui/gl", | 61 "//ui/gl", |
| 61 "//ui/views", | 62 "//ui/views", |
| 63 "//ui/views/mus", |
| 62 "//ui/wm:wm", | 64 "//ui/wm:wm", |
| 63 ] | 65 ] |
| 64 } | 66 } |
| 65 | 67 |
| 66 source_set("test_support") { | 68 source_set("test_support") { |
| 67 testonly = true | 69 testonly = true |
| 68 | 70 |
| 69 sources = [ | 71 sources = [ |
| 70 "test/exo_test_base.cc", | 72 "test/exo_test_base.cc", |
| 71 "test/exo_test_base.h", | 73 "test/exo_test_base.h", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 ] | 154 ] |
| 153 | 155 |
| 154 if (use_x11) { | 156 if (use_x11) { |
| 155 deps += [ "//tools/xdisplaycheck" ] | 157 deps += [ "//tools/xdisplaycheck" ] |
| 156 } | 158 } |
| 157 | 159 |
| 158 if (is_linux) { | 160 if (is_linux) { |
| 159 deps += [ "//components/exo/wayland:unit_tests" ] | 161 deps += [ "//components/exo/wayland:unit_tests" ] |
| 160 } | 162 } |
| 161 } | 163 } |
| OLD | NEW |