| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 "//ash", | 53 "//ash", |
| 54 "//ash/public/cpp", | 54 "//ash/public/cpp", |
| 55 "//base", | 55 "//base", |
| 56 "//cc", | 56 "//cc", |
| 57 "//cc/surfaces:surfaces", | 57 "//cc/surfaces:surfaces", |
| 58 "//device/gamepad", | 58 "//device/gamepad", |
| 59 "//gpu", | 59 "//gpu", |
| 60 "//gpu/command_buffer/client:gles2_interface", | 60 "//gpu/command_buffer/client:gles2_interface", |
| 61 "//services/ui/public/cpp", |
| 61 "//skia", | 62 "//skia", |
| 62 "//ui/aura", | 63 "//ui/aura", |
| 63 "//ui/compositor", | 64 "//ui/compositor", |
| 64 "//ui/display/manager", | 65 "//ui/display/manager", |
| 65 "//ui/events/devices:devices", | 66 "//ui/events/devices:devices", |
| 66 "//ui/gfx", | 67 "//ui/gfx", |
| 67 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
| 68 "//ui/gl", | 69 "//ui/gl", |
| 69 "//ui/views", | 70 "//ui/views", |
| 70 "//ui/views/mus", | 71 "//ui/views/mus", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 "//skia", | 133 "//skia", |
| 133 "//testing/gmock", | 134 "//testing/gmock", |
| 134 "//testing/gtest", | 135 "//testing/gtest", |
| 135 "//ui/aura", | 136 "//ui/aura", |
| 136 "//ui/events:dom_keycode_converter", | 137 "//ui/events:dom_keycode_converter", |
| 137 "//ui/events:test_support", | 138 "//ui/events:test_support", |
| 138 "//ui/gfx", | 139 "//ui/gfx", |
| 139 "//ui/keyboard", | 140 "//ui/keyboard", |
| 140 "//ui/message_center", | 141 "//ui/message_center", |
| 141 "//ui/views", | 142 "//ui/views", |
| 142 "//ui/wm", | 143 "//ui/wm:wm", |
| 143 ] | 144 ] |
| 144 | 145 |
| 145 if (use_ozone) { | 146 if (use_ozone) { |
| 146 deps += [ "//ui/ozone" ] | 147 deps += [ "//ui/ozone" ] |
| 147 } | 148 } |
| 148 } | 149 } |
| 149 | 150 |
| 150 test("exo_unittests") { | 151 test("exo_unittests") { |
| 151 sources = [ | 152 sources = [ |
| 152 "test/run_all_unittests.cc", | 153 "test/run_all_unittests.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 165 data_deps = [ | 166 data_deps = [ |
| 166 "//ash/common/strings:ash_test_strings", | 167 "//ash/common/strings:ash_test_strings", |
| 167 "//ash/resources:ash_test_resources_100_percent", | 168 "//ash/resources:ash_test_resources_100_percent", |
| 168 "//ash/resources:ash_test_resources_200_percent", | 169 "//ash/resources:ash_test_resources_200_percent", |
| 169 ] | 170 ] |
| 170 | 171 |
| 171 if (is_linux) { | 172 if (is_linux) { |
| 172 deps += [ "//components/exo/wayland:unit_tests" ] | 173 deps += [ "//components/exo/wayland:unit_tests" ] |
| 173 } | 174 } |
| 174 } | 175 } |
| OLD | NEW |