| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "window_finder.cc", | 49 "window_finder.cc", |
| 50 "window_finder.h", | 50 "window_finder.h", |
| 51 "window_manager_access_policy.cc", | 51 "window_manager_access_policy.cc", |
| 52 "window_manager_access_policy.h", | 52 "window_manager_access_policy.h", |
| 53 "window_manager_factory_service.cc", | 53 "window_manager_factory_service.cc", |
| 54 "window_manager_factory_service.h", | 54 "window_manager_factory_service.h", |
| 55 "window_tree_factory.cc", | 55 "window_tree_factory.cc", |
| 56 "window_tree_factory.h", | 56 "window_tree_factory.h", |
| 57 "window_tree_host_connection.cc", | 57 "window_tree_host_connection.cc", |
| 58 "window_tree_host_connection.h", | 58 "window_tree_host_connection.h", |
| 59 "window_tree_host_delegate.h", | |
| 60 "window_tree_host_impl.cc", | 59 "window_tree_host_impl.cc", |
| 61 "window_tree_host_impl.h", | 60 "window_tree_host_impl.h", |
| 62 "window_tree_impl.cc", | 61 "window_tree_impl.cc", |
| 63 "window_tree_impl.h", | 62 "window_tree_impl.h", |
| 64 ] | 63 ] |
| 65 | 64 |
| 66 deps = [ | 65 deps = [ |
| 67 "//base", | 66 "//base", |
| 68 "//cc", | 67 "//cc", |
| 69 "//cc/surfaces", | 68 "//cc/surfaces", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 206 |
| 208 if (use_x11) { | 207 if (use_x11) { |
| 209 deps += [ "//tools/xdisplaycheck" ] | 208 deps += [ "//tools/xdisplaycheck" ] |
| 210 } | 209 } |
| 211 } | 210 } |
| 212 | 211 |
| 213 mojo_application_manifest("manifest") { | 212 mojo_application_manifest("manifest") { |
| 214 application_name = "mus_apptests" | 213 application_name = "mus_apptests" |
| 215 source = "apptest_manifest.json" | 214 source = "apptest_manifest.json" |
| 216 } | 215 } |
| OLD | NEW |