| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "window_tree.cc", | 82 "window_tree.cc", |
| 83 "window_tree.h", | 83 "window_tree.h", |
| 84 "window_tree_binding.cc", | 84 "window_tree_binding.cc", |
| 85 "window_tree_binding.h", | 85 "window_tree_binding.h", |
| 86 "window_tree_factory.cc", | 86 "window_tree_factory.cc", |
| 87 "window_tree_factory.h", | 87 "window_tree_factory.h", |
| 88 "window_tree_host_factory.cc", | 88 "window_tree_host_factory.cc", |
| 89 "window_tree_host_factory.h", | 89 "window_tree_host_factory.h", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 deps = [ | 92 public_deps = [ |
| 93 "//base", | 93 "//base", |
| 94 "//cc", | 94 "//cc", |
| 95 "//cc/ipc:interfaces", |
| 95 "//cc/surfaces", | 96 "//cc/surfaces", |
| 96 "//cc/surfaces:surface_id", | 97 "//cc/surfaces:surface_id", |
| 97 "//components/mus/common:mus_common", | 98 "//components/mus/common:mus_common", |
| 98 "//components/mus/gles2", | 99 "//components/mus/gles2", |
| 99 "//components/mus/public/cpp/surfaces", | 100 "//components/mus/public/cpp/surfaces", |
| 100 "//components/mus/public/interfaces", | 101 "//components/mus/public/interfaces", |
| 101 "//components/mus/surfaces", | 102 "//components/mus/surfaces", |
| 102 "//mojo/common:common_base", | 103 "//mojo/common:common_base", |
| 103 "//mojo/converters/ime", | 104 "//mojo/converters/ime", |
| 104 "//mojo/public/cpp/bindings:callback", | 105 "//mojo/public/cpp/bindings:callback", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 121 | 122 |
| 122 if (use_ozone) { | 123 if (use_ozone) { |
| 123 sources -= [ | 124 sources -= [ |
| 124 "platform_screen_impl.cc", | 125 "platform_screen_impl.cc", |
| 125 "platform_screen_impl.h", | 126 "platform_screen_impl.h", |
| 126 ] | 127 ] |
| 127 sources += [ | 128 sources += [ |
| 128 "platform_screen_impl_ozone.cc", | 129 "platform_screen_impl_ozone.cc", |
| 129 "platform_screen_impl_ozone.h", | 130 "platform_screen_impl_ozone.h", |
| 130 ] | 131 ] |
| 131 deps += [ "//ui/ozone:ozone" ] | 132 public_deps += [ "//ui/ozone:ozone" ] |
| 132 } | 133 } |
| 133 } | 134 } |
| 134 | 135 |
| 135 source_set("test_interface") { | 136 source_set("test_interface") { |
| 136 sources = [ | 137 sources = [ |
| 137 "window_server_test_impl.cc", | 138 "window_server_test_impl.cc", |
| 138 "window_server_test_impl.h", | 139 "window_server_test_impl.h", |
| 139 ] | 140 ] |
| 140 | 141 |
| 141 deps = [ | 142 deps = [ |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 237 |
| 237 data_deps = [ | 238 data_deps = [ |
| 238 ":mus_ws_unittests_app_manifest", | 239 ":mus_ws_unittests_app_manifest", |
| 239 ] | 240 ] |
| 240 } | 241 } |
| 241 | 242 |
| 242 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 243 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 243 application_name = "mus_ws_unittests_app" | 244 application_name = "mus_ws_unittests_app" |
| 244 source = "mus_ws_unittests_app_manifest.json" | 245 source = "mus_ws_unittests_app_manifest.json" |
| 245 } | 246 } |
| OLD | NEW |