OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # Bookmarks is being made into a Browser Component, so we have these | 2 # Bookmarks is being made into a Browser Component, so we have these |
3 # two basic rules followed by temporary exceptions. Please don't | 3 # two basic rules followed by temporary exceptions. Please don't |
4 # add to the list of exceptions! | 4 # add to the list of exceptions! |
5 "-chrome/browser", | 5 "-chrome/browser", |
6 "+chrome/browser/api", | 6 "+chrome/browser/api", |
7 "+chrome/browser/bookmarks", | 7 "+chrome/browser/bookmarks", |
8 "+chrome/browser/common", | 8 "+chrome/browser/common", |
9 | 9 |
10 # TODO(kaiwang): Bring this list to zero. | 10 # TODO(kaiwang): Bring this list to zero. |
11 # Do not add to the list of temporarily-allowed dependencies below, | 11 # Do not add to the list of temporarily-allowed dependencies below, |
12 # and please do not introduce more #includes of these files. | 12 # and please do not introduce more #includes of these files. |
13 "!chrome/browser/favicon/favicon_service.h", | 13 "!chrome/browser/favicon/favicon_service.h", |
14 "!chrome/browser/favicon/favicon_service_factory.h", | 14 "!chrome/browser/favicon/favicon_service_factory.h", |
15 "!chrome/browser/history/history_notifications.h", | 15 "!chrome/browser/history/history_notifications.h", |
16 "!chrome/browser/history/history_service.h", | 16 "!chrome/browser/history/history_service.h", |
17 "!chrome/browser/history/history_service_factory.h", | 17 "!chrome/browser/history/history_service_factory.h", |
18 "!chrome/browser/history/history_types.h", | 18 "!chrome/browser/history/history_types.h", |
19 "!chrome/browser/history/query_parser.h", | 19 "!chrome/browser/history/query_parser.h", |
20 "!chrome/browser/history/snippet.h", | 20 "!chrome/browser/history/snippet.h", |
21 "!chrome/browser/history/url_database.h", | 21 "!chrome/browser/history/url_database.h", |
22 "!chrome/browser/prefs/pref_service_syncable.h", | 22 "!chrome/browser/prefs/pref_registry_syncable.h", |
| 23 "!chrome/browser/prefs/pref_service.h", |
23 "!chrome/browser/profiles/profile.h", | 24 "!chrome/browser/profiles/profile.h", |
24 "!chrome/browser/profiles/profile_dependency_manager.h", | 25 "!chrome/browser/profiles/profile_dependency_manager.h", |
25 "!chrome/browser/profiles/profile_keyed_service.h", | 26 "!chrome/browser/profiles/profile_keyed_service.h", |
26 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 27 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
27 # Do not add to the list of temporarily-allowed dependencies above, | 28 # Do not add to the list of temporarily-allowed dependencies above, |
28 # and please do not introduce more #includes of these files. | 29 # and please do not introduce more #includes of these files. |
29 ] | 30 ] |
30 | 31 |
31 specific_include_rules = { | 32 specific_include_rules = { |
32 # TODO(kaiwang): Bring this list to zero. | 33 # TODO(kaiwang): Bring this list to zero. |
33 # Do not add to the list of temporarily-allowed dependencies below, | 34 # Do not add to the list of temporarily-allowed dependencies below, |
34 # and please do not introduce more #includes of these files. | 35 # and please do not introduce more #includes of these files. |
35 '.*_[a-z]*test\.cc': [ | 36 '.*_[a-z]*test\.cc': [ |
36 "!chrome/browser/history/in_memory_database.h", | 37 "!chrome/browser/history/in_memory_database.h", |
37 "!chrome/browser/importer/firefox2_importer.h", | 38 "!chrome/browser/importer/firefox2_importer.h", |
38 ] | 39 ] |
39 } | 40 } |
OLD | NEW |