| 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 "+google_apis", | 5 "+google_apis", |
| 6 "+google/cacheinvalidation/types.pb.h", | 6 "+google/cacheinvalidation/types.pb.h", |
| 7 "+net", | 7 "+net", |
| 8 "+third_party/leveldatabase", | 8 "+third_party/leveldatabase", |
| 9 "+third_party/re2", | 9 "+third_party/re2", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 specific_include_rules = { | 12 specific_include_rules = { |
| 13 # The following dependency should be removed to fully make this | 13 # The following dependency should be removed to fully make this |
| 14 # directory chrome/ and content/ and storage/ independent. | 14 # directory chrome/ and content/ and storage/ independent. |
| 15 # crbug.com/257943 | 15 # crbug.com/257943 |
| 16 "drive_uploader\.cc": [ | 16 "drive_uploader\.cc": [ |
| 17 "+content/public/browser/power_save_blocker.h", | 17 "+content/public/browser/power_save_blocker_factory.h", |
| 18 ], | 18 ], |
| 19 | 19 |
| 20 # The following test dependencies should be removed to fully componentize this | 20 # The following test dependencies should be removed to fully componentize this |
| 21 # directory. crbug.com/498951 | 21 # directory. crbug.com/498951 |
| 22 r"(copy_operation_unittest\.cc" | 22 r"(copy_operation_unittest\.cc" |
| 23 r"|create_directory_operation_unittest\.cc" | 23 r"|create_directory_operation_unittest\.cc" |
| 24 r"|create_file_operation_unittest\.cc" | 24 r"|create_file_operation_unittest\.cc" |
| 25 r"|download_operation_unittest\.cc" | 25 r"|download_operation_unittest\.cc" |
| 26 r"|drive_test_util\.h" | 26 r"|drive_test_util\.h" |
| 27 r"|entry_revert_performer_unittest\.cc" | 27 r"|entry_revert_performer_unittest\.cc" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 r")": [ | 70 r")": [ |
| 71 "+content/public/browser/browser_thread.h", | 71 "+content/public/browser/browser_thread.h", |
| 72 ], | 72 ], |
| 73 | 73 |
| 74 # The dependency below is ok and can stay here for the long-term, because it | 74 # 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. | 75 # is guarded by #if defined(OS_CHROMEOS) in the source code. |
| 76 "file_cache\.h": [ | 76 "file_cache\.h": [ |
| 77 "+third_party/cros_system_api/constants/cryptohome.h", | 77 "+third_party/cros_system_api/constants/cryptohome.h", |
| 78 ], | 78 ], |
| 79 } | 79 } |
| OLD | NEW |