| 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("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 } | 153 } |
| 154 | 154 |
| 155 source_set("unittests") { | 155 source_set("unittests") { |
| 156 testonly = true | 156 testonly = true |
| 157 | 157 |
| 158 sources = [ | 158 sources = [ |
| 159 "accelerator_registrar_unittest.cc", | 159 "accelerator_registrar_unittest.cc", |
| 160 "app_launch_unittest.cc", | 160 "app_launch_unittest.cc", |
| 161 "frame/move_loop_unittest.cc", | 161 "frame/move_loop_unittest.cc", |
| 162 "layout_manager_unittest.cc", | 162 "layout_manager_unittest.cc", |
| 163 "test/wm_test_screen.cc", |
| 164 "test/wm_test_screen.h", |
| 163 "window_manager_unittest.cc", | 165 "window_manager_unittest.cc", |
| 164 ] | 166 ] |
| 165 | 167 |
| 166 deps = [ | 168 deps = [ |
| 167 ":lib", | 169 ":lib", |
| 168 "//base", | 170 "//base", |
| 169 "//base/test:test_config", | 171 "//base/test:test_config", |
| 170 "//components/mus/common:mus_common", | 172 "//components/mus/common:mus_common", |
| 171 "//components/mus/public/cpp", | 173 "//components/mus/public/cpp", |
| 172 "//components/mus/public/cpp/tests:unittest_support", | 174 "//components/mus/public/cpp/tests:unittest_support", |
| 173 "//components/mus/public/interfaces", | 175 "//components/mus/public/interfaces", |
| 174 "//mash/wm/public/interfaces", | 176 "//mash/wm/public/interfaces", |
| 175 "//mojo/converters/geometry", | 177 "//mojo/converters/geometry", |
| 176 "//mojo/converters/input_events", | 178 "//mojo/converters/input_events", |
| 177 "//mojo/edk/system", | 179 "//mojo/edk/system", |
| 178 "//mojo/gles2", | 180 "//mojo/gles2", |
| 179 "//mojo/platform_handle", | 181 "//mojo/platform_handle", |
| 180 "//mojo/public/cpp/system", | 182 "//mojo/public/cpp/system", |
| 181 "//services/shell/public/cpp:shell_test_support", | 183 "//services/shell/public/cpp:shell_test_support", |
| 182 "//testing/gtest", | 184 "//testing/gtest", |
| 185 "//ui/aura", |
| 183 "//ui/base", | 186 "//ui/base", |
| 187 "//ui/display", |
| 184 "//ui/events", | 188 "//ui/events", |
| 185 "//ui/gfx:test_support", | 189 "//ui/gfx:test_support", |
| 186 "//ui/gfx/geometry", | 190 "//ui/gfx/geometry", |
| 187 "//ui/mojo/geometry:interfaces", | 191 "//ui/mojo/geometry:interfaces", |
| 188 "//ui/mojo/geometry:util", | 192 "//ui/mojo/geometry:util", |
| 193 "//ui/views/mus", |
| 189 ] | 194 ] |
| 190 | 195 |
| 191 data_deps = [ | 196 data_deps = [ |
| 192 ":wm", | 197 ":wm", |
| 193 "//mash/quick_launch", | 198 "//mash/quick_launch", |
| 194 ] | 199 ] |
| 195 } | 200 } |
| OLD | NEW |