| 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") { |
| 11 sources = [ | 11 sources = [ |
| 12 "accelerator.cc", | 12 "accelerator.cc", |
| 13 "accelerator.h", | 13 "accelerator.h", |
| 14 "access_policy.h", | 14 "access_policy.h", |
| 15 "access_policy_delegate.h", | 15 "access_policy_delegate.h", |
| 16 "accessibility_manager.cc", | 16 "accessibility_manager.cc", |
| 17 "accessibility_manager.h", | 17 "accessibility_manager.h", |
| 18 "animation_runner.cc", | 18 "animation_runner.cc", |
| 19 "animation_runner.h", | 19 "animation_runner.h", |
| 20 "animation_runner_observer.h", | 20 "animation_runner_observer.h", |
| 21 "current_drag_operation.cc", |
| 22 "current_drag_operation.h", |
| 21 "default_access_policy.cc", | 23 "default_access_policy.cc", |
| 22 "default_access_policy.h", | 24 "default_access_policy.h", |
| 23 "display.cc", | 25 "display.cc", |
| 24 "display.h", | 26 "display.h", |
| 25 "display_binding.cc", | 27 "display_binding.cc", |
| 26 "display_binding.h", | 28 "display_binding.h", |
| 27 "display_manager.cc", | 29 "display_manager.cc", |
| 28 "display_manager.h", | 30 "display_manager.h", |
| 29 "display_manager_delegate.h", | 31 "display_manager_delegate.h", |
| 30 "event_dispatcher.cc", | 32 "event_dispatcher.cc", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 243 |
| 242 data_deps = [ | 244 data_deps = [ |
| 243 ":mus_ws_unittests_app_manifest", | 245 ":mus_ws_unittests_app_manifest", |
| 244 ] | 246 ] |
| 245 } | 247 } |
| 246 | 248 |
| 247 service_manifest("mus_ws_unittests_app_manifest") { | 249 service_manifest("mus_ws_unittests_app_manifest") { |
| 248 name = "mus_ws_unittests_app" | 250 name = "mus_ws_unittests_app" |
| 249 source = "mus_ws_unittests_app_manifest.json" | 251 source = "mus_ws_unittests_app_manifest.json" |
| 250 } | 252 } |
| OLD | NEW |