mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
72 lines
2.1 KiB
Plaintext
72 lines
2.1 KiB
Plaintext
# Copyright 2017 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/config/ui.gni")
|
|
|
|
source_set("run_all_service_tests") {
|
|
# This target is in a separate directory because we want to expand DEPS so
|
|
# that it not all of //services can access //ui.
|
|
visibility = [ "//services:*" ]
|
|
|
|
testonly = true
|
|
|
|
sources = [
|
|
"run_all_service_tests.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//services/service_manager/public/cpp/test:common_initialization",
|
|
"//ui/base",
|
|
]
|
|
|
|
if (is_ios) {
|
|
deps += [ ":tests_bundle_data" ]
|
|
} else {
|
|
data = [
|
|
"data/",
|
|
]
|
|
}
|
|
|
|
data_deps = [
|
|
"//ui/resources:ui_test_pak_data",
|
|
]
|
|
|
|
if (is_android) {
|
|
deps += [ "//mojo/public/java/system:native_support" ]
|
|
}
|
|
}
|
|
|
|
bundle_data("tests_bundle_data") {
|
|
visibility = [ ":run_all_service_tests" ]
|
|
testonly = true
|
|
sources = [
|
|
"//services/test/data/content-sniffer-test0.html",
|
|
"//services/test/data/content-sniffer-test0.html.mock-http-headers",
|
|
"//services/test/data/content-sniffer-test1.html",
|
|
"//services/test/data/content-sniffer-test1.html.mock-http-headers",
|
|
"//services/test/data/content-sniffer-test2.html",
|
|
"//services/test/data/content-sniffer-test2.html.mock-http-headers",
|
|
"//services/test/data/content-sniffer-test4.html",
|
|
"//services/test/data/content-sniffer-test4.html.mock-http-headers",
|
|
"//services/test/data/empty.html",
|
|
"//services/test/data/has_favicon.html",
|
|
"//services/test/data/hello.html",
|
|
"//services/test/data/hello.html.mock-http-headers",
|
|
"//services/test/data/nocache.html",
|
|
"//services/test/data/nocache.html.mock-http-headers",
|
|
"//services/test/data/nosniff-test.html",
|
|
"//services/test/data/nosniff-test.html.mock-http-headers",
|
|
"//services/test/data/redirect307-to-echo",
|
|
"//services/test/data/redirect307-to-echo.mock-http-headers",
|
|
"//services/test/data/simple_page.html",
|
|
"//services/test/data/title1.html",
|
|
]
|
|
outputs = [
|
|
"{{bundle_resources_dir}}/" +
|
|
"{{source_root_relative_dir}}/{{source_file_part}}",
|
|
]
|
|
}
|