forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make components explicitly declare dependencies on other components.
BUG=314560 Review URL: https://codereview.chromium.org/62333016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234858 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
joi@chromium.org
committed
Nov 13, 2013
1 parent
0a8718b
commit 0833f12
Showing
6 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
include_rules = [ | ||
"!content/public/common/common_param_traits.h", | ||
|
||
# TODO(joi): Perhaps PrefRegistrySyncable should be a separate | ||
# component since it is currently in the same component as | ||
# UserPrefs, which uses content::BrowserContext. | ||
"+components/user_prefs/pref_registry_syncable.h", | ||
"+components/webdata/encryptor", | ||
|
||
# TODO(blundell): Bring this list to zero. | ||
# | ||
# Do not add to the list of temporarily-allowed dependencies below, | ||
# and please do not introduce more #includes of these files. | ||
"!content/public/common/common_param_traits.h", | ||
"!content/public/common/common_param_traits_macros.h", | ||
"!third_party/WebKit/public/web/WebFormElement.h", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include_rules = [ | ||
"+components/user_prefs", | ||
"+content/public/browser", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include_rules = [ | ||
"+components/browser_context_keyed_service", | ||
"+content/public/browser", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include_rules = [ | ||
"+components/json_schema", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters