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") { |
(...skipping 16 matching lines...) Expand all Loading... |
27 "display_manager_delegate.h", | 27 "display_manager_delegate.h", |
28 "event_dispatcher.cc", | 28 "event_dispatcher.cc", |
29 "event_dispatcher.h", | 29 "event_dispatcher.h", |
30 "event_dispatcher_delegate.h", | 30 "event_dispatcher_delegate.h", |
31 "event_matcher.cc", | 31 "event_matcher.cc", |
32 "event_matcher.h", | 32 "event_matcher.h", |
33 "focus_controller.cc", | 33 "focus_controller.cc", |
34 "focus_controller.h", | 34 "focus_controller.h", |
35 "focus_controller_delegate.h", | 35 "focus_controller_delegate.h", |
36 "focus_controller_observer.h", | 36 "focus_controller_observer.h", |
| 37 "frame_generator.cc", |
| 38 "frame_generator.h", |
37 "modal_window_controller.cc", | 39 "modal_window_controller.cc", |
38 "modal_window_controller.h", | 40 "modal_window_controller.h", |
39 "operation.cc", | 41 "operation.cc", |
40 "operation.h", | 42 "operation.h", |
41 "platform_display.cc", | 43 "platform_display.cc", |
42 "platform_display.h", | 44 "platform_display.h", |
43 "platform_display_delegate.h", | 45 "platform_display_delegate.h", |
44 "platform_display_factory.h", | 46 "platform_display_factory.h", |
45 "platform_display_init_params.cc", | 47 "platform_display_init_params.cc", |
46 "platform_display_init_params.h", | 48 "platform_display_init_params.h", |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 | 247 |
246 data_deps = [ | 248 data_deps = [ |
247 ":mus_ws_unittests_app_manifest", | 249 ":mus_ws_unittests_app_manifest", |
248 ] | 250 ] |
249 } | 251 } |
250 | 252 |
251 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 253 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
252 application_name = "mus_ws_unittests_app" | 254 application_name = "mus_ws_unittests_app" |
253 source = "mus_ws_unittests_app_manifest.json" | 255 source = "mus_ws_unittests_app_manifest.json" |
254 } | 256 } |
OLD | NEW |