| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "server_window_surface_manager_test_api.h", | 154 "server_window_surface_manager_test_api.h", |
| 155 "test_server_window_delegate.cc", | 155 "test_server_window_delegate.cc", |
| 156 "test_server_window_delegate.h", | 156 "test_server_window_delegate.h", |
| 157 "test_utils.cc", | 157 "test_utils.cc", |
| 158 "test_utils.h", | 158 "test_utils.h", |
| 159 "transient_windows_unittest.cc", | 159 "transient_windows_unittest.cc", |
| 160 "user_display_manager_unittest.cc", | 160 "user_display_manager_unittest.cc", |
| 161 "window_coordinate_conversions_unittest.cc", | 161 "window_coordinate_conversions_unittest.cc", |
| 162 "window_finder_unittest.cc", | 162 "window_finder_unittest.cc", |
| 163 "window_manager_client_unittest.cc", | 163 "window_manager_client_unittest.cc", |
| 164 "window_tree_client_unittest.cc", |
| 164 "window_tree_unittest.cc", | 165 "window_tree_unittest.cc", |
| 165 ] | 166 ] |
| 166 | 167 |
| 167 deps = [ | 168 deps = [ |
| 168 ":lib", | 169 ":lib", |
| 169 ":test_support", | 170 ":test_support", |
| 170 "//base", | 171 "//base", |
| 171 "//base/test:test_config", | 172 "//base/test:test_config", |
| 172 "//cc:cc", | 173 "//cc:cc", |
| 173 "//components/mus/common:mus_common", | 174 "//components/mus/common:mus_common", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 207 |
| 207 data_deps = [ | 208 data_deps = [ |
| 208 ":mus_ws_unittests_app_manifest", | 209 ":mus_ws_unittests_app_manifest", |
| 209 ] | 210 ] |
| 210 } | 211 } |
| 211 | 212 |
| 212 mojo_application_manifest("mus_ws_unittests_app_manifest") { | 213 mojo_application_manifest("mus_ws_unittests_app_manifest") { |
| 213 application_name = "mus_ws_unittests_app" | 214 application_name = "mus_ws_unittests_app" |
| 214 source = "mus_ws_unittests_app_manifest.json" | 215 source = "mus_ws_unittests_app_manifest.json" |
| 215 } | 216 } |
| OLD | NEW |