Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: chrome/test/BUILD.gn

Issue 2834693002: Mus Browser Tests (Closed)
Patch Set: Address Comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/test/base/mash_browser_tests_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 ] 1185 ]
1186 1186
1187 deps += [ 1187 deps += [
1188 "//mash/package", 1188 "//mash/package",
1189 "//mash/session/public/interfaces:constants", 1189 "//mash/session/public/interfaces:constants",
1190 "//services/service_manager/background:lib", 1190 "//services/service_manager/background:lib",
1191 ] 1191 ]
1192 1192
1193 data_deps = [ 1193 data_deps = [
1194 ":mash_browser_tests_catalog_copy", 1194 ":mash_browser_tests_catalog_copy",
1195 ":mus_browser_tests_catalog_copy",
1195 "//mash/session", 1196 "//mash/session",
1196 ] 1197 ]
1197 } else { 1198 } else {
1198 sources += [ "base/browser_tests_main.cc" ] 1199 sources += [ "base/browser_tests_main.cc" ]
1199 } 1200 }
1200 } 1201 }
1201 1202
1202 # Used only by chrome/browser/ui/webui/bidi_checker_web_ui_test.cc 1203 # Used only by chrome/browser/ui/webui/bidi_checker_web_ui_test.cc
1203 chrome_repack_locales("repack_pseudo_locales") { 1204 chrome_repack_locales("repack_pseudo_locales") {
1204 visibility = [ ":*" ] 1205 visibility = [ ":*" ]
(...skipping 4026 matching lines...) Expand 10 before | Expand all | Expand 10 after
5231 copy("mash_browser_tests_catalog_copy") { 5232 copy("mash_browser_tests_catalog_copy") {
5232 testonly = true 5233 testonly = true
5233 sources = get_target_outputs(":mash_browser_tests_catalog") 5234 sources = get_target_outputs(":mash_browser_tests_catalog")
5234 outputs = [ 5235 outputs = [
5235 "${root_out_dir}/mash_browser_tests_catalog.json", 5236 "${root_out_dir}/mash_browser_tests_catalog.json",
5236 ] 5237 ]
5237 deps = [ 5238 deps = [
5238 ":mash_browser_tests_catalog", 5239 ":mash_browser_tests_catalog",
5239 ] 5240 ]
5240 } 5241 }
5242
5243 group("mus_browser_tests_run") {
5244 testonly = true
5245 deps = [
5246 ":mus_browser_tests",
5247 ]
5248 }
5249
5250 group("mus_browser_tests") {
5251 testonly = true
5252 data_deps = [
5253 ":browser_tests",
5254 "//chrome/app/mash:mash_service_overrides",
5255 ]
5256 }
5257
5258 service_manifest("mus_browser_tests_manifest") {
5259 name = "mus_browser_tests"
5260
5261 source = "base/mus_browser_tests_manifest.json"
5262 packaged_services = [ "//services/ui:manifest" ]
5263 }
5264
5265 catalog("mus_browser_tests_catalog") {
5266 testonly = true
5267 embedded_services = [ ":mus_browser_tests_manifest" ]
5268 standalone_services = [ "//services/tracing:manifest" ]
5269 catalog_deps = [ "//chrome/app:catalog_for_mus" ]
5270 }
5271
5272 copy("mus_browser_tests_catalog_copy") {
5273 testonly = true
5274 sources = get_target_outputs(":mus_browser_tests_catalog")
5275 outputs = [
5276 "${root_out_dir}/mus_browser_tests_catalog.json",
5277 ]
5278 deps = [
5279 ":mus_browser_tests_catalog",
5280 ]
5281 }
5241 } 5282 }
5242 5283
5243 if (is_win) { 5284 if (is_win) {
5244 loadable_module("conflicts_dll") { 5285 loadable_module("conflicts_dll") {
5245 testonly = true 5286 testonly = true
5246 sources = [ 5287 sources = [
5247 "conflicts/conflicts_dll.cc", 5288 "conflicts/conflicts_dll.cc",
5248 ] 5289 ]
5249 } 5290 }
5250 } 5291 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/base/mash_browser_tests_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698