Chromium change: https://chromium.googlesource.com/chromium/src/+/7b0f4a87890ea commit 7b0f4a87890eada6c8e66ade31a1524ddd6ba6d3 Author: Erik Chen <erikchen@chromium.org> Date: Thu Sep 26 21:34:14 2024 +0000 Reland "Modularize //chrome/browser/content_settings" This reverts commit 33aad0933b53aa545d0d2f5f04e158f205ff9740. Reason for revert: Original CL should not have been reverted. Original change's description: > Revert "Modularize //chrome/browser/content_settings" > > This reverts commit b9c3338d51a8b30884cb17b9f7b227fd83bd89e9. > > Reason for revert: Breaks android-desktop-x64-archive-rel and android-desktop-arm64-archive-rel: > https://ci.chromium.org/ui/p/chromium/builders/ci/android-desktop-x64-archive-rel/1999/overview > > Original change's description: > > Modularize //chrome/browser/content_settings > > > > Bug: 369423337
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
# Copyright (c) 2021 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
source_set("browser_tests") {
|
|
testonly = true
|
|
defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
|
|
|
|
sources = [
|
|
"disabled_features/disable_client_hints_browsertest.cc",
|
|
"disabled_features/navigator_battery_browsertest.cc",
|
|
"disabled_features/navigator_bluetooth_browsertest.cc",
|
|
"disabled_features/navigator_storage_browsertest.cc",
|
|
"disabled_features/reporting_observer_browsertest.cc",
|
|
"disabled_features/window_name_browsertest.cc",
|
|
"document_location_browsertest.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//brave/browser",
|
|
"//brave/common",
|
|
"//chrome/browser",
|
|
"//chrome/browser/content_settings:content_settings_factory",
|
|
"//chrome/browser/ui",
|
|
"//chrome/common",
|
|
"//chrome/test:test_support",
|
|
"//chrome/test:test_support_ui",
|
|
"//content/public/browser",
|
|
"//content/test:test_support",
|
|
"//ui/webui:test_support",
|
|
]
|
|
|
|
if (is_mac) {
|
|
sources += [ "os_crypt/keychain_password_mac_browsertest.mm" ]
|
|
|
|
deps += [ "//components/os_crypt/sync:test_support" ]
|
|
}
|
|
}
|