| 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 28 matching lines...) Expand all Loading... |
| 39 "wm_helper.cc", | 39 "wm_helper.cc", |
| 40 "wm_helper.h", | 40 "wm_helper.h", |
| 41 "wm_helper_ash.cc", | 41 "wm_helper_ash.cc", |
| 42 "wm_helper_ash.h", | 42 "wm_helper_ash.h", |
| 43 "wm_helper_mus.cc", | 43 "wm_helper_mus.cc", |
| 44 "wm_helper_mus.h", | 44 "wm_helper_mus.h", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 "//ash", | 48 "//ash", |
| 49 "//ash/public/cpp", |
| 49 "//base", | 50 "//base", |
| 50 "//cc", | 51 "//cc", |
| 51 "//cc/surfaces:surfaces", | 52 "//cc/surfaces:surfaces", |
| 52 "//device/gamepad", | 53 "//device/gamepad", |
| 53 "//gpu", | 54 "//gpu", |
| 54 "//gpu/command_buffer/client:gles2_interface", | 55 "//gpu/command_buffer/client:gles2_interface", |
| 55 "//services/ui/public/cpp", | 56 "//services/ui/public/cpp", |
| 56 "//skia", | 57 "//skia", |
| 57 "//ui/aura", | 58 "//ui/aura", |
| 58 "//ui/compositor", | 59 "//ui/compositor", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "shell_surface_unittest.cc", | 108 "shell_surface_unittest.cc", |
| 108 "sub_surface_unittest.cc", | 109 "sub_surface_unittest.cc", |
| 109 "surface_unittest.cc", | 110 "surface_unittest.cc", |
| 110 "touch_unittest.cc", | 111 "touch_unittest.cc", |
| 111 ] | 112 ] |
| 112 | 113 |
| 113 deps = [ | 114 deps = [ |
| 114 ":exo", | 115 ":exo", |
| 115 ":test_support", | 116 ":test_support", |
| 116 "//ash", | 117 "//ash", |
| 118 "//ash/public/cpp", |
| 117 "//base", | 119 "//base", |
| 118 "//base/test:test_support", | 120 "//base/test:test_support", |
| 119 "//cc", | 121 "//cc", |
| 120 "//cc/surfaces:surfaces", | 122 "//cc/surfaces:surfaces", |
| 121 "//components/user_manager", | 123 "//components/user_manager", |
| 122 "//device/gamepad:test_helpers", | 124 "//device/gamepad:test_helpers", |
| 123 "//gpu/command_buffer/client:gles2_interface", | 125 "//gpu/command_buffer/client:gles2_interface", |
| 124 "//skia", | 126 "//skia", |
| 125 "//testing/gmock", | 127 "//testing/gmock", |
| 126 "//testing/gtest", | 128 "//testing/gtest", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 ] | 162 ] |
| 161 | 163 |
| 162 if (use_x11) { | 164 if (use_x11) { |
| 163 deps += [ "//tools/xdisplaycheck" ] | 165 deps += [ "//tools/xdisplaycheck" ] |
| 164 } | 166 } |
| 165 | 167 |
| 166 if (is_linux) { | 168 if (is_linux) { |
| 167 deps += [ "//components/exo/wayland:unit_tests" ] | 169 deps += [ "//components/exo/wayland:unit_tests" ] |
| 168 } | 170 } |
| 169 } | 171 } |
| OLD | NEW |