| 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 "buffer.cc", | 9 "buffer.cc", |
| 10 "buffer.h", | 10 "buffer.h", |
| 11 "display.cc", | 11 "display.cc", |
| 12 "display.h", | 12 "display.h", |
| 13 "shared_memory.cc", | 13 "shared_memory.cc", |
| 14 "shared_memory.h", | 14 "shared_memory.h", |
| 15 "shell_surface.cc", | 15 "shell_surface.cc", |
| 16 "shell_surface.h", | 16 "shell_surface.h", |
| 17 "sub_surface.cc", | 17 "sub_surface.cc", |
| 18 "sub_surface.h", | 18 "sub_surface.h", |
| 19 "surface.cc", | 19 "surface.cc", |
| 20 "surface.h", | 20 "surface.h", |
| 21 "surface_delegate.h", | 21 "surface_delegate.h", |
| 22 "surface_observer.h", | 22 "surface_observer.h", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 "//ash", | 26 "//ash", |
| 27 "//ash/resources", |
| 27 "//base", | 28 "//base", |
| 28 "//cc", | 29 "//cc", |
| 29 "//gpu", | 30 "//gpu", |
| 30 "//skia", | 31 "//skia", |
| 31 "//ui/aura", | 32 "//ui/aura", |
| 32 "//ui/compositor", | 33 "//ui/compositor", |
| 33 "//ui/gfx", | 34 "//ui/gfx", |
| 34 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
| 35 "//ui/gl", | 36 "//ui/gl", |
| 36 "//ui/views", | 37 "//ui/views", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "test/run_all_unittests.cc", | 84 "test/run_all_unittests.cc", |
| 84 ] | 85 ] |
| 85 deps = [ | 86 deps = [ |
| 86 ":unit_tests", | 87 ":unit_tests", |
| 87 "//ash:test_support", | 88 "//ash:test_support", |
| 88 ] | 89 ] |
| 89 if (is_linux) { | 90 if (is_linux) { |
| 90 deps += [ "//components/exo/wayland:unit_tests" ] | 91 deps += [ "//components/exo/wayland:unit_tests" ] |
| 91 } | 92 } |
| 92 } | 93 } |
| OLD | NEW |