Files
Shivan Kaul Sahib bb932438b4 Script injector component tests (#20884)
* Fix up script_injector mojom build deps
2023-11-15 18:42:10 -08:00

27 lines
741 B
Plaintext

# Copyright (c) 2023 The Brave Authors. All rights reserved.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at https://mozilla.org/MPL/2.0/.
source_set("browser_tests") {
testonly = true
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
sources = [ "script_injector_browsertest.cc" ]
deps = [
"//base",
"//brave/components/script_injector/common/mojom",
"//chrome/test:test_support",
"//content/test:test_support",
"//net:test_support",
"//url",
]
if (is_android) {
deps += [ "//chrome/test:test_support_ui_android" ]
} else {
deps += [ "//chrome/test:test_support_ui" ]
}
}