| 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. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "!chrome/browser/history/snippet.h", | 27 "!chrome/browser/history/snippet.h", |
| 28 "!chrome/browser/importer/importer_data_types.h", | 28 "!chrome/browser/importer/importer_data_types.h", |
| 29 "!chrome/browser/importer/importer_host.h", | 29 "!chrome/browser/importer/importer_host.h", |
| 30 "!chrome/browser/prefs/pref_service.h", | 30 "!chrome/browser/prefs/pref_service.h", |
| 31 "!chrome/browser/profiles/profile.h", | 31 "!chrome/browser/profiles/profile.h", |
| 32 "!chrome/browser/profiles/profile_dependency_manager.h", | 32 "!chrome/browser/profiles/profile_dependency_manager.h", |
| 33 "!chrome/browser/profiles/profile_keyed_service.h", | 33 "!chrome/browser/profiles/profile_keyed_service.h", |
| 34 "!chrome/browser/profiles/profile_keyed_service_factory.h", | 34 "!chrome/browser/profiles/profile_keyed_service_factory.h", |
| 35 "!chrome/browser/ui/bookmarks/bookmark_tab_helper.h", | 35 "!chrome/browser/ui/bookmarks/bookmark_tab_helper.h", |
| 36 "!chrome/browser/ui/chrome_select_file_policy.h", | 36 "!chrome/browser/ui/chrome_select_file_policy.h", |
| 37 "!chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h", | |
| 38 "!chrome/browser/ui/webui/chrome_url_data_manager.h", | 37 "!chrome/browser/ui/webui/chrome_url_data_manager.h", |
| 39 "!chrome/browser/view_type_utils.h", | 38 "!chrome/browser/view_type_utils.h", |
| 40 # Do not add to the list of temporarily-allowed dependencies above, | 39 # Do not add to the list of temporarily-allowed dependencies above, |
| 41 # and please do not introduce more #includes of these files. | 40 # and please do not introduce more #includes of these files. |
| 42 ] | 41 ] |
| 43 | 42 |
| 44 specific_include_rules = { | 43 specific_include_rules = { |
| 45 # TODO(kaiwang): Bring this list to zero. | 44 # TODO(kaiwang): Bring this list to zero. |
| 46 # Do not add to the list of temporarily-allowed dependencies below, | 45 # Do not add to the list of temporarily-allowed dependencies below, |
| 47 # and please do not introduce more #includes of these files. | 46 # and please do not introduce more #includes of these files. |
| 48 '.*_[a-z]*test\.cc': [ | 47 '.*_[a-z]*test\.cc': [ |
| 49 "!chrome/browser/extensions/extension_apitest.h", | 48 "!chrome/browser/extensions/extension_apitest.h", |
| 50 "!chrome/browser/history/in_memory_database.h", | 49 "!chrome/browser/history/in_memory_database.h", |
| 51 "!chrome/browser/importer/firefox2_importer.h", | 50 "!chrome/browser/importer/firefox2_importer.h", |
| 52 "!chrome/browser/ui/browser.h", | 51 "!chrome/browser/ui/browser.h", |
| 53 ] | 52 ] |
| 54 } | 53 } |
| OLD | NEW |