| 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("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("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", |
| 17 "accessibility_manager.h", |
| 16 "animation_runner.cc", | 18 "animation_runner.cc", |
| 17 "animation_runner.h", | 19 "animation_runner.h", |
| 18 "animation_runner_observer.h", | 20 "animation_runner_observer.h", |
| 19 "default_access_policy.cc", | 21 "default_access_policy.cc", |
| 20 "default_access_policy.h", | 22 "default_access_policy.h", |
| 21 "display.cc", | 23 "display.cc", |
| 22 "display.h", | 24 "display.h", |
| 23 "display_binding.cc", | 25 "display_binding.cc", |
| 24 "display_binding.h", | 26 "display_binding.h", |
| 25 "display_manager.cc", | 27 "display_manager.cc", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 253 |
| 252 data_deps = [ | 254 data_deps = [ |
| 253 ":mus_ws_unittests_app_manifest", | 255 ":mus_ws_unittests_app_manifest", |
| 254 ] | 256 ] |
| 255 } | 257 } |
| 256 | 258 |
| 257 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 259 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 258 application_name = "mus_ws_unittests_app" | 260 application_name = "mus_ws_unittests_app" |
| 259 source = "mus_ws_unittests_app_manifest.json" | 261 source = "mus_ws_unittests_app_manifest.json" |
| 260 } | 262 } |
| OLD | NEW |