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