| 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 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", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "//ui/platform_window", | 129 "//ui/platform_window", |
| 130 "//ui/platform_window:platform_impls", | 130 "//ui/platform_window:platform_impls", |
| 131 "//ui/platform_window/mojo", | 131 "//ui/platform_window/mojo", |
| 132 ] | 132 ] |
| 133 | 133 |
| 134 if (use_ozone) { | 134 if (use_ozone) { |
| 135 public_deps += [ "//ui/ozone:ozone" ] | 135 public_deps += [ "//ui/ozone:ozone" ] |
| 136 } | 136 } |
| 137 } | 137 } |
| 138 | 138 |
| 139 source_set("test_interface") { | 139 static_library("test_interface") { |
| 140 sources = [ | 140 sources = [ |
| 141 "window_server_test_impl.cc", | 141 "window_server_test_impl.cc", |
| 142 "window_server_test_impl.h", | 142 "window_server_test_impl.h", |
| 143 ] | 143 ] |
| 144 | 144 |
| 145 deps = [ | 145 deps = [ |
| 146 ":lib", | 146 ":lib", |
| 147 "//mojo/public/cpp/bindings:bindings", | 147 "//mojo/public/cpp/bindings:bindings", |
| 148 "//services/ui/public/interfaces", | 148 "//services/ui/public/interfaces", |
| 149 "//ui/gfx", | 149 "//ui/gfx", |
| 150 ] | 150 ] |
| 151 } | 151 } |
| 152 | 152 |
| 153 source_set("test_support") { | 153 static_library("test_support") { |
| 154 testonly = true | 154 testonly = true |
| 155 | 155 |
| 156 sources = [ | 156 sources = [ |
| 157 "test_change_tracker.cc", | 157 "test_change_tracker.cc", |
| 158 "test_change_tracker.h", | 158 "test_change_tracker.h", |
| 159 ] | 159 ] |
| 160 | 160 |
| 161 deps = [ | 161 deps = [ |
| 162 "//base", | 162 "//base", |
| 163 "//mojo/common", | 163 "//mojo/common", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 data_deps = [ | 241 data_deps = [ |
| 242 ":mus_ws_unittests_app_manifest", | 242 ":mus_ws_unittests_app_manifest", |
| 243 ] | 243 ] |
| 244 } | 244 } |
| 245 | 245 |
| 246 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 246 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 247 application_name = "mus_ws_unittests_app" | 247 application_name = "mus_ws_unittests_app" |
| 248 source = "mus_ws_unittests_app_manifest.json" | 248 source = "mus_ws_unittests_app_manifest.json" |
| 249 } | 249 } |
| OLD | NEW |