| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 public_deps = [ | 115 public_deps = [ |
| 116 ":mus", | 116 ":mus", |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 static_library("test_support") { | 120 static_library("test_support") { |
| 121 testonly = true | 121 testonly = true |
| 122 | 122 |
| 123 sources = [ | 123 sources = [ |
| 124 "../test/native_widget_factory_mus.cc", | 124 "../test/native_widget_factory_mus.cc", |
| 125 "test_utils.h", |
| 125 "views_mus_test_suite.cc", | 126 "views_mus_test_suite.cc", |
| 126 "views_mus_test_suite.h", | 127 "views_mus_test_suite.h", |
| 127 ] | 128 ] |
| 128 | 129 |
| 129 deps = [ | 130 deps = [ |
| 130 ":mus", | 131 ":mus", |
| 131 "//base", | 132 "//base", |
| 132 "//base/test:test_support", | 133 "//base/test:test_support", |
| 133 "//services/shell/background:lib", | 134 "//services/shell/background:lib", |
| 134 "//services/shell/background/tests:test_support", | 135 "//services/shell/background/tests:test_support", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 151 test("views_mus_unittests") { | 152 test("views_mus_unittests") { |
| 152 testonly = true | 153 testonly = true |
| 153 | 154 |
| 154 sources = [ | 155 sources = [ |
| 155 "input_method_mus_unittest.cc", | 156 "input_method_mus_unittest.cc", |
| 156 "native_widget_mus_unittest.cc", | 157 "native_widget_mus_unittest.cc", |
| 157 "os_exchange_data_provider_mus_unittest.cc", | 158 "os_exchange_data_provider_mus_unittest.cc", |
| 158 "pointer_watcher_event_router_unittest.cc", | 159 "pointer_watcher_event_router_unittest.cc", |
| 159 "run_all_unittests_mus.cc", | 160 "run_all_unittests_mus.cc", |
| 160 "screen_mus_unittest.cc", | 161 "screen_mus_unittest.cc", |
| 162 "window_manager_connection_unittest.cc", |
| 161 ] | 163 ] |
| 162 | 164 |
| 163 configs += [ "//build/config:precompiled_headers" ] | 165 configs += [ "//build/config:precompiled_headers" ] |
| 164 | 166 |
| 165 deps = [ | 167 deps = [ |
| 166 ":mus", | 168 ":mus", |
| 167 ":test_support", | 169 ":test_support", |
| 168 "//base", | 170 "//base", |
| 169 "//base:i18n", | 171 "//base:i18n", |
| 170 "//base/test:test_support", | 172 "//base/test:test_support", |
| 171 "//cc", | 173 "//cc", |
| 172 "//net", | 174 "//net", |
| 173 "//services/shell/background:main", # Provides main(). | 175 "//services/shell/background:main", # Provides main(). |
| 174 "//services/ui/public/cpp", | 176 "//services/ui/public/cpp", |
| 177 "//services/ui/public/cpp:internal_or_test", |
| 175 "//services/ui/public/cpp/tests:unittest_support", | 178 "//services/ui/public/cpp/tests:unittest_support", |
| 176 "//services/ui/public/interfaces", | 179 "//services/ui/public/interfaces", |
| 177 "//skia", | 180 "//skia", |
| 178 "//testing/gtest", | 181 "//testing/gtest", |
| 179 "//third_party/icu", | 182 "//third_party/icu", |
| 180 "//ui/accessibility", | 183 "//ui/accessibility", |
| 181 "//ui/aura", | 184 "//ui/aura", |
| 182 "//ui/aura:test_support", | 185 "//ui/aura:test_support", |
| 183 "//ui/base", | 186 "//ui/base", |
| 184 "//ui/base:test_support", | 187 "//ui/base:test_support", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 type = "exe" | 288 type = "exe" |
| 286 name = "views_mus_unittests" | 289 name = "views_mus_unittests" |
| 287 source = "unittests_manifest.json" | 290 source = "unittests_manifest.json" |
| 288 } | 291 } |
| 289 | 292 |
| 290 service_manifest("interactive_ui_tests_manifest") { | 293 service_manifest("interactive_ui_tests_manifest") { |
| 291 type = "exe" | 294 type = "exe" |
| 292 name = "views_mus_interactive_ui_tests" | 295 name = "views_mus_interactive_ui_tests" |
| 293 source = "interactive_ui_tests_manifest.json" | 296 source = "interactive_ui_tests_manifest.json" |
| 294 } | 297 } |
| OLD | NEW |