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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("exo") { | 7 source_set("exo") { |
8 sources = [ | 8 sources = [ |
| 9 "arc/arc_input_bridge.cc", |
| 10 "arc/arc_input_bridge.h", |
9 "buffer.cc", | 11 "buffer.cc", |
10 "buffer.h", | 12 "buffer.h", |
11 "display.cc", | 13 "display.cc", |
12 "display.h", | 14 "display.h", |
13 "shared_memory.cc", | 15 "shared_memory.cc", |
14 "shared_memory.h", | 16 "shared_memory.h", |
15 "shell_surface.cc", | 17 "shell_surface.cc", |
16 "shell_surface.h", | 18 "shell_surface.h", |
17 "sub_surface.cc", | 19 "sub_surface.cc", |
18 "sub_surface.h", | 20 "sub_surface.h", |
19 "surface.cc", | 21 "surface.cc", |
20 "surface.h", | 22 "surface.h", |
21 "surface_delegate.h", | 23 "surface_delegate.h", |
22 "surface_observer.h", | 24 "surface_observer.h", |
23 ] | 25 ] |
24 | 26 |
25 defines = [ "EXO_IMPLEMENTATION" ] | 27 defines = [ "EXO_IMPLEMENTATION" ] |
26 | 28 |
27 deps = [ | 29 deps = [ |
28 "//ash", | 30 "//ash", |
29 "//ash/resources", | 31 "//ash/resources", |
30 "//base", | 32 "//base", |
31 "//cc", | 33 "//cc", |
| 34 "//components/arc", |
32 "//gpu", | 35 "//gpu", |
33 "//skia", | 36 "//skia", |
34 "//ui/aura", | 37 "//ui/aura", |
35 "//ui/compositor", | 38 "//ui/compositor", |
36 "//ui/gfx", | 39 "//ui/gfx", |
37 "//ui/gfx/geometry", | 40 "//ui/gfx/geometry", |
38 "//ui/gl", | 41 "//ui/gl", |
39 "//ui/views", | 42 "//ui/views", |
40 ] | 43 ] |
41 } | 44 } |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "test/run_all_unittests.cc", | 89 "test/run_all_unittests.cc", |
87 ] | 90 ] |
88 deps = [ | 91 deps = [ |
89 "//ash:test_support", | 92 "//ash:test_support", |
90 ":unit_tests", | 93 ":unit_tests", |
91 ] | 94 ] |
92 if (is_linux) { | 95 if (is_linux) { |
93 deps += [ "//components/exo/wayland:unit_tests" ] | 96 deps += [ "//components/exo/wayland:unit_tests" ] |
94 } | 97 } |
95 } | 98 } |
OLD | NEW |