| 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 "ax_tree_source_surface.cc", |
| 11 "ax_tree_source_surface.h", |
| 10 "buffer.cc", | 12 "buffer.cc", |
| 11 "buffer.h", | 13 "buffer.h", |
| 12 "compositor_frame_sink.cc", | 14 "compositor_frame_sink.cc", |
| 13 "compositor_frame_sink.h", | 15 "compositor_frame_sink.h", |
| 14 "compositor_frame_sink_holder.cc", | 16 "compositor_frame_sink_holder.cc", |
| 15 "compositor_frame_sink_holder.h", | 17 "compositor_frame_sink_holder.h", |
| 16 "display.cc", | 18 "display.cc", |
| 17 "display.h", | 19 "display.h", |
| 18 "gamepad.cc", | 20 "gamepad.cc", |
| 19 "gamepad.h", | 21 "gamepad.h", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 data_deps = [ | 170 data_deps = [ |
| 169 "//ash/common/strings:ash_test_strings", | 171 "//ash/common/strings:ash_test_strings", |
| 170 "//ash/resources:ash_test_resources_100_percent", | 172 "//ash/resources:ash_test_resources_100_percent", |
| 171 "//ash/resources:ash_test_resources_200_percent", | 173 "//ash/resources:ash_test_resources_200_percent", |
| 172 ] | 174 ] |
| 173 | 175 |
| 174 if (is_linux) { | 176 if (is_linux) { |
| 175 deps += [ "//components/exo/wayland:unit_tests" ] | 177 deps += [ "//components/exo/wayland:unit_tests" ] |
| 176 } | 178 } |
| 177 } | 179 } |
| OLD | NEW |