| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+components/invalidation", | 2 "+components/invalidation", |
| 3 "+components/keyed_service", | 3 "+components/keyed_service", |
| 4 "+components/prefs", | 4 "+components/prefs", |
| 5 "+device/power_save_blocker", |
| 5 "+google_apis", | 6 "+google_apis", |
| 6 "+google/cacheinvalidation/types.pb.h", | 7 "+google/cacheinvalidation/types.pb.h", |
| 7 "+net", | 8 "+net", |
| 8 "+third_party/leveldatabase", | 9 "+third_party/leveldatabase", |
| 9 "+third_party/re2", | 10 "+third_party/re2", |
| 10 ] | 11 ] |
| 11 | 12 |
| 12 specific_include_rules = { | 13 specific_include_rules = { |
| 13 # The following dependency should be removed to fully make this | |
| 14 # directory chrome/ and content/ and storage/ independent. | |
| 15 # crbug.com/257943 | |
| 16 "drive_uploader\.cc": [ | |
| 17 "+content/public/browser/power_save_blocker_factory.h", | |
| 18 ], | |
| 19 | |
| 20 # The following test dependencies should be removed to fully componentize this | 14 # The following test dependencies should be removed to fully componentize this |
| 21 # directory. crbug.com/498951 | 15 # directory. crbug.com/498951 |
| 22 r"(copy_operation_unittest\.cc" | 16 r"(copy_operation_unittest\.cc" |
| 23 r"|create_directory_operation_unittest\.cc" | 17 r"|create_directory_operation_unittest\.cc" |
| 24 r"|create_file_operation_unittest\.cc" | 18 r"|create_file_operation_unittest\.cc" |
| 25 r"|download_operation_unittest\.cc" | 19 r"|download_operation_unittest\.cc" |
| 26 r"|drive_test_util\.h" | 20 r"|drive_test_util\.h" |
| 27 r"|entry_revert_performer_unittest\.cc" | 21 r"|entry_revert_performer_unittest\.cc" |
| 28 r"|entry_update_performer_unittest\.cc" | 22 r"|entry_update_performer_unittest\.cc" |
| 29 r"|get_file_for_saving_operation_unittest\.cc" | 23 r"|get_file_for_saving_operation_unittest\.cc" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 55 r"|resource_metadata_storage_unittest\.cc" | 49 r"|resource_metadata_storage_unittest\.cc" |
| 56 r"|resource_metadata_unittest\.cc" | 50 r"|resource_metadata_unittest\.cc" |
| 57 r"|search_metadata_unittest\.cc" | 51 r"|search_metadata_unittest\.cc" |
| 58 r"|sync_client_unittest\.cc" | 52 r"|sync_client_unittest\.cc" |
| 59 r")": [ | 53 r")": [ |
| 60 "+content/public/test/test_browser_thread_bundle.h", | 54 "+content/public/test/test_browser_thread_bundle.h", |
| 61 ], | 55 ], |
| 62 | 56 |
| 63 # The following test dependencies should be removed to fully componentize this | 57 # The following test dependencies should be removed to fully componentize this |
| 64 # directory. crbug.com/498951 | 58 # directory. crbug.com/498951 |
| 65 r"(fake_file_system\.cc" | 59 r"(drive_uploader\.cc" |
| 66 r"|file_system_unittest.cc" | 60 r"|fake_file_system\.cc" |
| 61 r"|file_system_unittest\.cc" |
| 67 r"|file_write_watcher_unittest\.cc" | 62 r"|file_write_watcher_unittest\.cc" |
| 68 r"|get_file_for_saving_operation_unittest\.cc" | 63 r"|get_file_for_saving_operation_unittest\.cc" |
| 69 r"|operation_test_base\.cc" | 64 r"|operation_test_base\.cc" |
| 70 r")": [ | 65 r")": [ |
| 71 "+content/public/browser/browser_thread.h", | 66 "+content/public/browser/browser_thread.h", |
| 72 ], | 67 ], |
| 73 | 68 |
| 74 # The dependency below is ok and can stay here for the long-term, because it | 69 # The dependency below is ok and can stay here for the long-term, because it |
| 75 # is guarded by #if defined(OS_CHROMEOS) in the source code. | 70 # is guarded by #if defined(OS_CHROMEOS) in the source code. |
| 76 "file_cache\.h": [ | 71 "file_cache\.h": [ |
| 77 "+third_party/cros_system_api/constants/cryptohome.h", | 72 "+third_party/cros_system_api/constants/cryptohome.h", |
| 78 ], | 73 ], |
| 79 } | 74 } |
| OLD | NEW |