| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 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 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "default_access_policy.cc", | 21 "default_access_policy.cc", |
| 22 "default_access_policy.h", | 22 "default_access_policy.h", |
| 23 "display.cc", | 23 "display.cc", |
| 24 "display.h", | 24 "display.h", |
| 25 "display_binding.cc", | 25 "display_binding.cc", |
| 26 "display_binding.h", | 26 "display_binding.h", |
| 27 "display_manager.cc", | 27 "display_manager.cc", |
| 28 "display_manager.h", | 28 "display_manager.h", |
| 29 "drag_controller.cc", | 29 "drag_controller.cc", |
| 30 "drag_controller.h", | 30 "drag_controller.h", |
| 31 "drag_cursor_updater.h", |
| 31 "drag_source.h", | 32 "drag_source.h", |
| 32 "drag_target_connection.h", | 33 "drag_target_connection.h", |
| 33 "event_dispatcher.cc", | 34 "event_dispatcher.cc", |
| 34 "event_dispatcher.h", | 35 "event_dispatcher.h", |
| 35 "event_dispatcher_delegate.h", | 36 "event_dispatcher_delegate.h", |
| 36 "event_matcher.cc", | 37 "event_matcher.cc", |
| 37 "event_matcher.h", | 38 "event_matcher.h", |
| 38 "focus_controller.cc", | 39 "focus_controller.cc", |
| 39 "focus_controller.h", | 40 "focus_controller.h", |
| 40 "focus_controller_delegate.h", | 41 "focus_controller_delegate.h", |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 261 |
| 261 data_deps = [ | 262 data_deps = [ |
| 262 ":mus_ws_unittests_app_manifest", | 263 ":mus_ws_unittests_app_manifest", |
| 263 ] | 264 ] |
| 264 } | 265 } |
| 265 | 266 |
| 266 service_manifest("mus_ws_unittests_app_manifest") { | 267 service_manifest("mus_ws_unittests_app_manifest") { |
| 267 name = "mus_ws_unittests_app" | 268 name = "mus_ws_unittests_app" |
| 268 source = "mus_ws_unittests_app_manifest.json" | 269 source = "mus_ws_unittests_app_manifest.json" |
| 269 } | 270 } |
| OLD | NEW |