From 0a8d96b88281b79a543c5d2cb5be4a41e7cd4318 Mon Sep 17 00:00:00 2001 From: Mario Sanchez Prada Date: Tue, 21 Dec 2021 16:53:48 +0100 Subject: [PATCH] Exclude browser tests from upstream that are known to fail in Brave Similarly to what we've done earlier in the year for other tests [1], this patch disables entire *_browsertest.cc files by making them empty via chromium_src overrides, as well as all the JS tests via a patch to include_js_tests.gni, so that we avoid running any test that we know are going to fail because of the many ways in which Brave is different than Chromium upstream. [1] https://github.com/brave/brave-core/pull/7953 --- .../conversions_usage_restriction_trial_browsertest.cc | 7 +++++++ .../chrome/browser/autofill/autofill_server_browsertest.cc | 7 +++++++ .../browsing_data/incognito_browsing_data_browsertest.cc | 7 +++++++ .../browsing_data/third_party_data_remover_browsertest.cc | 7 +++++++ .../chrome/browser/devtools/devtools_browsertest.cc | 7 +++++++ .../dom_distiller_viewer_source_browsertest.cc | 7 +++++++ .../analysis/content_analysis_dialog_browsertest.cc | 7 +++++++ .../api/webstore_private/webstore_private_apitest.cc | 7 +++++++ .../extensions/extension_disabled_ui_browsertest.cc | 7 +++++++ .../browser/extensions/extension_startup_browsertest.cc | 7 +++++++ .../browser/extensions/preinstalled_apps_browsertest.cc | 7 +++++++ .../browser/extensions/webstore_installer_browsertest.cc | 7 +++++++ .../browser/extensions/webstore_reinstaller_browsertest.cc | 7 +++++++ .../interest_group_permissions_browsertest.cc | 7 +++++++ .../chrome/browser/lazyload/lazyload_browsertest.cc | 7 +++++++ .../browser/media/webrtc/capture_handle_browsertest.cc | 7 +++++++ .../metrics/variations/variations_safe_mode_browsertest.cc | 7 +++++++ .../net/explicitly_allowed_network_ports_browsertest.cc | 7 +++++++ .../chrome/browser/net/net_error_tab_helper_browsertest.cc | 7 +++++++ .../browser/net/private_network_access_browsertest.cc | 7 +++++++ .../optimization_guide/page_text_observer_browsertest.cc | 7 +++++++ .../javascript_frameworks_ukm_observer_browsertest.cc | 7 +++++++ .../policies/bfcache_policy_browsertest.cc | 7 +++++++ .../policy/cloud/component_cloud_policy_browsertest.cc | 7 +++++++ .../policy/test/component_updater_policy_browsertest.cc | 7 +++++++ .../policy/test/content_settings_policy_browsertest.cc | 7 +++++++ .../policy/test/hide_webstore_icon_policy_browsertest.cc | 7 +++++++ .../policy/test/network_prediction_policy_browsertest.cc | 7 +++++++ .../chrome/browser/policy/test/policy_browsertest.cc | 7 +++++++ .../policy/test/restore_on_startup_policy_browsertest.cc | 7 +++++++ .../policy/test/safe_browsing_policy_browsertest.cc | 7 +++++++ .../browser/policy/test/signed_exchange_browsertest.cc | 7 +++++++ .../browser/privacy_budget/privacy_budget_browsertest.cc | 7 +++++++ .../privacy_sandbox_settings_browsertest.cc | 7 +++++++ .../search_engines/template_url_scraper_browsertest.cc | 7 +++++++ .../browser/signin/remove_local_account_browsertest.cc | 7 +++++++ .../translate/translate_model_service_browsertest.cc | 7 +++++++ .../offer_notification_bubble_views_browsertest.cc | 7 +++++++ .../extension_uninstall_dialog_view_browsertest.cc | 7 +++++++ .../cookie_controls_bubble_view_browsertest.cc | 7 +++++++ .../page_info/page_info_bubble_view_dialog_browsertest.cc | 7 +++++++ .../permission_prompt_bubble_view_browsertest.cc | 7 +++++++ .../ui/views/toolbar/avatar_toolbar_button_browsertest.cc | 7 +++++++ .../chrome/browser/ui/webui/profile_helper_browsertest.cc | 7 +++++++ .../renderer/cart/commerce_hint_agent_browsertest.cc | 7 +++++++ .../chrome/test/base/web_ui_browser_test_browsertest.cc | 7 +++++++ .../webui/mojo/mojo_js_interface_broker_browsertest.cc | 7 +++++++ 47 files changed, 329 insertions(+) create mode 100644 chromium_src/chrome/browser/attribution_reporting/conversions_usage_restriction_trial_browsertest.cc create mode 100644 chromium_src/chrome/browser/autofill/autofill_server_browsertest.cc create mode 100644 chromium_src/chrome/browser/browsing_data/incognito_browsing_data_browsertest.cc create mode 100644 chromium_src/chrome/browser/browsing_data/third_party_data_remover_browsertest.cc create mode 100644 chromium_src/chrome/browser/devtools/devtools_browsertest.cc create mode 100644 chromium_src/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc create mode 100644 chromium_src/chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_browsertest.cc create mode 100644 chromium_src/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc create mode 100644 chromium_src/chrome/browser/extensions/extension_disabled_ui_browsertest.cc create mode 100644 chromium_src/chrome/browser/extensions/extension_startup_browsertest.cc create mode 100644 chromium_src/chrome/browser/extensions/preinstalled_apps_browsertest.cc create mode 100644 chromium_src/chrome/browser/extensions/webstore_installer_browsertest.cc create mode 100644 chromium_src/chrome/browser/extensions/webstore_reinstaller_browsertest.cc create mode 100644 chromium_src/chrome/browser/interest_group/interest_group_permissions_browsertest.cc create mode 100644 chromium_src/chrome/browser/lazyload/lazyload_browsertest.cc create mode 100644 chromium_src/chrome/browser/media/webrtc/capture_handle_browsertest.cc create mode 100644 chromium_src/chrome/browser/metrics/variations/variations_safe_mode_browsertest.cc create mode 100644 chromium_src/chrome/browser/net/explicitly_allowed_network_ports_browsertest.cc create mode 100644 chromium_src/chrome/browser/net/net_error_tab_helper_browsertest.cc create mode 100644 chromium_src/chrome/browser/net/private_network_access_browsertest.cc create mode 100644 chromium_src/chrome/browser/optimization_guide/page_text_observer_browsertest.cc create mode 100644 chromium_src/chrome/browser/page_load_metrics/observers/javascript_frameworks_ukm_observer_browsertest.cc create mode 100644 chromium_src/chrome/browser/performance_manager/policies/bfcache_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/cloud/component_cloud_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/component_updater_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/content_settings_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/hide_webstore_icon_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/network_prediction_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/restore_on_startup_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/safe_browsing_policy_browsertest.cc create mode 100644 chromium_src/chrome/browser/policy/test/signed_exchange_browsertest.cc create mode 100644 chromium_src/chrome/browser/privacy_budget/privacy_budget_browsertest.cc create mode 100644 chromium_src/chrome/browser/privacy_sandbox/privacy_sandbox_settings_browsertest.cc create mode 100644 chromium_src/chrome/browser/search_engines/template_url_scraper_browsertest.cc create mode 100644 chromium_src/chrome/browser/signin/remove_local_account_browsertest.cc create mode 100644 chromium_src/chrome/browser/translate/translate_model_service_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/views/autofill/payments/offer_notification_bubble_views_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/views/extensions/extension_uninstall_dialog_view_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/views/location_bar/cookie_controls_bubble_view_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/views/page_info/page_info_bubble_view_dialog_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/views/permission_bubble/permission_prompt_bubble_view_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/views/toolbar/avatar_toolbar_button_browsertest.cc create mode 100644 chromium_src/chrome/browser/ui/webui/profile_helper_browsertest.cc create mode 100644 chromium_src/chrome/renderer/cart/commerce_hint_agent_browsertest.cc create mode 100644 chromium_src/chrome/test/base/web_ui_browser_test_browsertest.cc create mode 100644 chromium_src/chrome/test/data/webui/mojo/mojo_js_interface_broker_browsertest.cc diff --git a/chromium_src/chrome/browser/attribution_reporting/conversions_usage_restriction_trial_browsertest.cc b/chromium_src/chrome/browser/attribution_reporting/conversions_usage_restriction_trial_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/attribution_reporting/conversions_usage_restriction_trial_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/autofill/autofill_server_browsertest.cc b/chromium_src/chrome/browser/autofill/autofill_server_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/autofill/autofill_server_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/browsing_data/incognito_browsing_data_browsertest.cc b/chromium_src/chrome/browser/browsing_data/incognito_browsing_data_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/browsing_data/incognito_browsing_data_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/browsing_data/third_party_data_remover_browsertest.cc b/chromium_src/chrome/browser/browsing_data/third_party_data_remover_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/browsing_data/third_party_data_remover_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/devtools/devtools_browsertest.cc b/chromium_src/chrome/browser/devtools/devtools_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/devtools/devtools_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc b/chromium_src/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_browsertest.cc b/chromium_src/chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc b/chromium_src/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/extensions/extension_disabled_ui_browsertest.cc b/chromium_src/chrome/browser/extensions/extension_disabled_ui_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/extensions/extension_disabled_ui_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/extensions/extension_startup_browsertest.cc b/chromium_src/chrome/browser/extensions/extension_startup_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/extensions/extension_startup_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/extensions/preinstalled_apps_browsertest.cc b/chromium_src/chrome/browser/extensions/preinstalled_apps_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/extensions/preinstalled_apps_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/extensions/webstore_installer_browsertest.cc b/chromium_src/chrome/browser/extensions/webstore_installer_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/extensions/webstore_installer_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/extensions/webstore_reinstaller_browsertest.cc b/chromium_src/chrome/browser/extensions/webstore_reinstaller_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/extensions/webstore_reinstaller_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/interest_group/interest_group_permissions_browsertest.cc b/chromium_src/chrome/browser/interest_group/interest_group_permissions_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/interest_group/interest_group_permissions_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/lazyload/lazyload_browsertest.cc b/chromium_src/chrome/browser/lazyload/lazyload_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/lazyload/lazyload_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/media/webrtc/capture_handle_browsertest.cc b/chromium_src/chrome/browser/media/webrtc/capture_handle_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/media/webrtc/capture_handle_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/metrics/variations/variations_safe_mode_browsertest.cc b/chromium_src/chrome/browser/metrics/variations/variations_safe_mode_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/metrics/variations/variations_safe_mode_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/net/explicitly_allowed_network_ports_browsertest.cc b/chromium_src/chrome/browser/net/explicitly_allowed_network_ports_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/net/explicitly_allowed_network_ports_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/net/net_error_tab_helper_browsertest.cc b/chromium_src/chrome/browser/net/net_error_tab_helper_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/net/net_error_tab_helper_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/net/private_network_access_browsertest.cc b/chromium_src/chrome/browser/net/private_network_access_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/net/private_network_access_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/optimization_guide/page_text_observer_browsertest.cc b/chromium_src/chrome/browser/optimization_guide/page_text_observer_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/optimization_guide/page_text_observer_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/page_load_metrics/observers/javascript_frameworks_ukm_observer_browsertest.cc b/chromium_src/chrome/browser/page_load_metrics/observers/javascript_frameworks_ukm_observer_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/page_load_metrics/observers/javascript_frameworks_ukm_observer_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/performance_manager/policies/bfcache_policy_browsertest.cc b/chromium_src/chrome/browser/performance_manager/policies/bfcache_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/performance_manager/policies/bfcache_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/cloud/component_cloud_policy_browsertest.cc b/chromium_src/chrome/browser/policy/cloud/component_cloud_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/cloud/component_cloud_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/component_updater_policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/component_updater_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/component_updater_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/content_settings_policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/content_settings_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/content_settings_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/hide_webstore_icon_policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/hide_webstore_icon_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/hide_webstore_icon_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/network_prediction_policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/network_prediction_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/network_prediction_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/restore_on_startup_policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/restore_on_startup_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/restore_on_startup_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/safe_browsing_policy_browsertest.cc b/chromium_src/chrome/browser/policy/test/safe_browsing_policy_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/safe_browsing_policy_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/policy/test/signed_exchange_browsertest.cc b/chromium_src/chrome/browser/policy/test/signed_exchange_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/policy/test/signed_exchange_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/privacy_budget/privacy_budget_browsertest.cc b/chromium_src/chrome/browser/privacy_budget/privacy_budget_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/privacy_budget/privacy_budget_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/privacy_sandbox/privacy_sandbox_settings_browsertest.cc b/chromium_src/chrome/browser/privacy_sandbox/privacy_sandbox_settings_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/privacy_sandbox/privacy_sandbox_settings_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/search_engines/template_url_scraper_browsertest.cc b/chromium_src/chrome/browser/search_engines/template_url_scraper_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/search_engines/template_url_scraper_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/signin/remove_local_account_browsertest.cc b/chromium_src/chrome/browser/signin/remove_local_account_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/signin/remove_local_account_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/translate/translate_model_service_browsertest.cc b/chromium_src/chrome/browser/translate/translate_model_service_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/translate/translate_model_service_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/views/autofill/payments/offer_notification_bubble_views_browsertest.cc b/chromium_src/chrome/browser/ui/views/autofill/payments/offer_notification_bubble_views_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/views/autofill/payments/offer_notification_bubble_views_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/views/extensions/extension_uninstall_dialog_view_browsertest.cc b/chromium_src/chrome/browser/ui/views/extensions/extension_uninstall_dialog_view_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/views/extensions/extension_uninstall_dialog_view_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/views/location_bar/cookie_controls_bubble_view_browsertest.cc b/chromium_src/chrome/browser/ui/views/location_bar/cookie_controls_bubble_view_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/views/location_bar/cookie_controls_bubble_view_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/views/page_info/page_info_bubble_view_dialog_browsertest.cc b/chromium_src/chrome/browser/ui/views/page_info/page_info_bubble_view_dialog_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/views/page_info/page_info_bubble_view_dialog_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/views/permission_bubble/permission_prompt_bubble_view_browsertest.cc b/chromium_src/chrome/browser/ui/views/permission_bubble/permission_prompt_bubble_view_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/views/permission_bubble/permission_prompt_bubble_view_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/views/toolbar/avatar_toolbar_button_browsertest.cc b/chromium_src/chrome/browser/ui/views/toolbar/avatar_toolbar_button_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/views/toolbar/avatar_toolbar_button_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/browser/ui/webui/profile_helper_browsertest.cc b/chromium_src/chrome/browser/ui/webui/profile_helper_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/browser/ui/webui/profile_helper_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/renderer/cart/commerce_hint_agent_browsertest.cc b/chromium_src/chrome/renderer/cart/commerce_hint_agent_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/renderer/cart/commerce_hint_agent_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/test/base/web_ui_browser_test_browsertest.cc b/chromium_src/chrome/test/base/web_ui_browser_test_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/test/base/web_ui_browser_test_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information. diff --git a/chromium_src/chrome/test/data/webui/mojo/mojo_js_interface_broker_browsertest.cc b/chromium_src/chrome/test/data/webui/mojo/mojo_js_interface_broker_browsertest.cc new file mode 100644 index 000000000000..37f87fda1221 --- /dev/null +++ b/chromium_src/chrome/test/data/webui/mojo/mojo_js_interface_broker_browsertest.cc @@ -0,0 +1,7 @@ +/* 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/. */ + +// THIS FILE IS INTENTIONALLY EMPTY TO DISABLE TESTS FROM CHROMIUM UPSTREAM. +// See https://github.com/brave/brave-browser/issues/8297 for more information.