diff --git a/components/DEPS b/components/DEPS index d1b8e482c91..05fb9b42b1c 100644 --- a/components/DEPS +++ b/components/DEPS @@ -67,9 +67,15 @@ include_rules += [ "-components/search_engines", "-components/security_interstitials", "-components/sessions", + "-components/signin", + "-components/sync_device_info", "-components/sync_preferences", "-components/sync", + "-components/update_client", "-components/user_prefs", + "-components/value_store", + "-components/variations", + "-components/version_info", ] specific_include_rules = { diff --git a/components/brave_ads/core/DEPS b/components/brave_ads/core/DEPS index 9e2b33fca0a..17257060de6 100644 --- a/components/brave_ads/core/DEPS +++ b/components/brave_ads/core/DEPS @@ -2,5 +2,6 @@ include_rules = [ "-content", "+components/keyed_service", "+components/prefs", + "+components/variations", "-third_party/blink", ] diff --git a/components/brave_component_updater/browser/DEPS b/components/brave_component_updater/browser/DEPS index eea1e278dc2..c3dae96152a 100644 --- a/components/brave_component_updater/browser/DEPS +++ b/components/brave_component_updater/browser/DEPS @@ -2,6 +2,7 @@ include_rules = [ "+components/component_updater", "+components/crx_file", "+components/prefs", + "+components/update_client", "+crypto", "+extensions/common", ] diff --git a/components/brave_shields/core/browser/DEPS b/components/brave_shields/core/browser/DEPS index 2795c70a958..be1f24dba2a 100644 --- a/components/brave_shields/core/browser/DEPS +++ b/components/brave_shields/core/browser/DEPS @@ -1,6 +1,7 @@ include_rules = [ "+components/component_updater", "+components/prefs", + "+components/value_store", "+crypto", ] diff --git a/components/brave_sync/DEPS b/components/brave_sync/DEPS index d852fd9b8e8..3fded1ed4e9 100644 --- a/components/brave_sync/DEPS +++ b/components/brave_sync/DEPS @@ -4,6 +4,7 @@ include_rules = [ "+components/os_crypt/sync", "+components/prefs", "+components/sync", + "+components/sync_device_info", "+content/public/browser", "+third_party/boringssl", "+ios/web/public", diff --git a/components/brave_vpn/browser/DEPS b/components/brave_vpn/browser/DEPS index c4fe4f0ed20..99be4b1d5ca 100644 --- a/components/brave_vpn/browser/DEPS +++ b/components/brave_vpn/browser/DEPS @@ -3,6 +3,7 @@ include_rules = [ "+components/keyed_service", "+components/prefs", "+components/sync_preferences/testing_pref_service_syncable.h", + "+components/version_info", "+content/public/browser", "+content/public/test", "+services/data_decoder/public", diff --git a/components/brave_vpn/common/DEPS b/components/brave_vpn/common/DEPS index 3670035d4e1..df852b69230 100644 --- a/components/brave_vpn/common/DEPS +++ b/components/brave_vpn/common/DEPS @@ -2,4 +2,5 @@ include_rules = [ "+components/pref_registry", "+components/prefs", "+components/sync_preferences/testing_pref_service_syncable.h", + "+components/version_info", ] diff --git a/components/brave_wallet/browser/DEPS b/components/brave_wallet/browser/DEPS index 036a83eb492..9a5362f793b 100644 --- a/components/brave_wallet/browser/DEPS +++ b/components/brave_wallet/browser/DEPS @@ -12,6 +12,8 @@ include_rules = [ "+components/pref_registry", "+components/prefs", "+components/sync_preferences/testing_pref_service_syncable.h", + "+components/update_client", + "+components/value_store", "+content/public/browser", "+content/public/common", "+content/public/test", diff --git a/components/embedder_support/DEPS b/components/embedder_support/DEPS index acd960b0231..19da671d1de 100644 --- a/components/embedder_support/DEPS +++ b/components/embedder_support/DEPS @@ -1,4 +1,5 @@ include_rules = [ "+components/embedder_support", + "+components/version_info", "+third_party/blink/public/common", ] diff --git a/components/ntp_background_images/browser/DEPS b/components/ntp_background_images/browser/DEPS index 641b206fdd9..21a1ac9c4b3 100644 --- a/components/ntp_background_images/browser/DEPS +++ b/components/ntp_background_images/browser/DEPS @@ -5,6 +5,7 @@ include_rules = [ "+components/metrics", "+components/prefs", "+components/sync_preferences/testing_pref_service_syncable.h", + "+components/variations", "+content/public/browser", "+content/public/common", "+content/public/test", diff --git a/components/omnibox/browser/DEPS b/components/omnibox/browser/DEPS index bb11ba4c3e6..72cd57a6e25 100644 --- a/components/omnibox/browser/DEPS +++ b/components/omnibox/browser/DEPS @@ -12,6 +12,7 @@ include_rules = [ "+components/prefs", "+components/search_engines", "+components/sync_preferences/testing_pref_service_syncable.h", + "+components/variations", "+content/public/test", "+services/network/public", "+services/network/test", diff --git a/components/signin/DEPS b/components/signin/DEPS new file mode 100644 index 00000000000..d478809c0c3 --- /dev/null +++ b/components/signin/DEPS @@ -0,0 +1,9 @@ +include_rules = [ + "+components/signin/public", +] + +specific_include_rules = { + "brave_identity_manager_unittest\.cc": [ + "+components/signin/internal/identity_manager" + ], +} diff --git a/components/signin/internal/identity_manager/DEPS b/components/signin/internal/identity_manager/DEPS new file mode 100644 index 00000000000..7dad1a5f700 --- /dev/null +++ b/components/signin/internal/identity_manager/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + "+components/signin/internal/identity_manager", +] diff --git a/components/sync/service/DEPS b/components/sync/service/DEPS index 85564de72ac..f83b0e87975 100644 --- a/components/sync/service/DEPS +++ b/components/sync/service/DEPS @@ -4,6 +4,7 @@ include_rules = [ "+components/network_time", "+components/os_crypt/sync", "+components/prefs", + "+components/signin", "+components/sync_preferences/testing_pref_service_syncable.h", "+content/public/test", "+google_apis/gaia/gaia_id.h", diff --git a/components/sync_device_info/DEPS b/components/sync_device_info/DEPS index 5fb592e596f..042f0b546a0 100644 --- a/components/sync_device_info/DEPS +++ b/components/sync_device_info/DEPS @@ -1,3 +1,4 @@ include_rules = [ "+components/sync", + "+components/sync_device_info", ] diff --git a/components/variations/DEPS b/components/variations/DEPS new file mode 100644 index 00000000000..80f6f908e13 --- /dev/null +++ b/components/variations/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + "+components/variations", +] diff --git a/components/version_info/DEPS b/components/version_info/DEPS index a5e8c5c4396..e2de39db85c 100644 --- a/components/version_info/DEPS +++ b/components/version_info/DEPS @@ -1,3 +1,7 @@ +include_rules = [ + "+components/version_info", +] + specific_include_rules = { # component unit tests should not have chrome deps "version_info_unittest\.cc": [