| 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/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 sources = [ | 12 sources = [ |
| 13 "accelerator_registrar_impl.cc", | |
| 14 "accelerator_registrar_impl.h", | |
| 15 "accelerators/accelerator_controller_delegate_mus.cc", | 13 "accelerators/accelerator_controller_delegate_mus.cc", |
| 16 "accelerators/accelerator_controller_delegate_mus.h", | 14 "accelerators/accelerator_controller_delegate_mus.h", |
| 15 "accelerators/accelerator_handler.h", |
| 16 "accelerators/accelerator_ids.h", |
| 17 "accelerators/accelerator_registrar_impl.cc", |
| 18 "accelerators/accelerator_registrar_impl.h", |
| 17 "accessibility_delegate_mus.cc", | 19 "accessibility_delegate_mus.cc", |
| 18 "accessibility_delegate_mus.h", | 20 "accessibility_delegate_mus.h", |
| 19 "bridge/mus_layout_manager_adapter.cc", | 21 "bridge/mus_layout_manager_adapter.cc", |
| 20 "bridge/mus_layout_manager_adapter.h", | 22 "bridge/mus_layout_manager_adapter.h", |
| 21 "bridge/wm_lookup_mus.cc", | 23 "bridge/wm_lookup_mus.cc", |
| 22 "bridge/wm_lookup_mus.h", | 24 "bridge/wm_lookup_mus.h", |
| 23 "bridge/wm_root_window_controller_mus.cc", | 25 "bridge/wm_root_window_controller_mus.cc", |
| 24 "bridge/wm_root_window_controller_mus.h", | 26 "bridge/wm_root_window_controller_mus.h", |
| 25 "bridge/wm_shelf_mus.cc", | 27 "bridge/wm_shelf_mus.cc", |
| 26 "bridge/wm_shelf_mus.h", | 28 "bridge/wm_shelf_mus.h", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "//ui/strings", | 172 "//ui/strings", |
| 171 "//ui/views/mus:resources", | 173 "//ui/views/mus:resources", |
| 172 "//ui/views/resources", | 174 "//ui/views/resources", |
| 173 ] | 175 ] |
| 174 } | 176 } |
| 175 | 177 |
| 176 source_set("unittests") { | 178 source_set("unittests") { |
| 177 testonly = true | 179 testonly = true |
| 178 | 180 |
| 179 sources = [ | 181 sources = [ |
| 180 "accelerator_registrar_unittest.cc", | 182 "accelerators/accelerator_registrar_unittest.cc", |
| 181 "app_launch_unittest.cc", | 183 "app_launch_unittest.cc", |
| 182 "layout_manager_unittest.cc", | 184 "layout_manager_unittest.cc", |
| 183 "root_window_controller_unittest.cc", | 185 "root_window_controller_unittest.cc", |
| 184 "test/wm_test_base.cc", | 186 "test/wm_test_base.cc", |
| 185 "test/wm_test_base.h", | 187 "test/wm_test_base.h", |
| 186 "test/wm_test_helper.cc", | 188 "test/wm_test_helper.cc", |
| 187 "test/wm_test_helper.h", | 189 "test/wm_test_helper.h", |
| 188 "test/wm_test_screen.cc", | 190 "test/wm_test_screen.cc", |
| 189 "test/wm_test_screen.h", | 191 "test/wm_test_screen.h", |
| 190 "window_manager_unittest.cc", | 192 "window_manager_unittest.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 216 "//ui/gfx/geometry", | 218 "//ui/gfx/geometry", |
| 217 "//ui/gfx/geometry/mojo", | 219 "//ui/gfx/geometry/mojo", |
| 218 "//ui/views/mus", | 220 "//ui/views/mus", |
| 219 ] | 221 ] |
| 220 | 222 |
| 221 data_deps = [ | 223 data_deps = [ |
| 222 ":mus", | 224 ":mus", |
| 223 "//mash/quick_launch", | 225 "//mash/quick_launch", |
| 224 ] | 226 ] |
| 225 } | 227 } |
| OLD | NEW |