| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+components/invalidation", | 2 "+components/invalidation", |
| 3 "+components/keyed_service", | 3 "+components/keyed_service", |
| 4 "+google_apis", | 4 "+google_apis", |
| 5 "+google/cacheinvalidation/types.pb.h", | 5 "+google/cacheinvalidation/types.pb.h", |
| 6 "+net", | 6 "+net", |
| 7 "+third_party/leveldatabase", | 7 "+third_party/leveldatabase", |
| 8 "+third_party/re2", | 8 "+third_party/re2", |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 specific_include_rules = { | 11 specific_include_rules = { |
| 12 # The following dependency should be removed to fully make this | 12 # The following dependency should be removed to fully make this |
| 13 # directory chrome/ and content/ and storage/ independent. | 13 # directory chrome/ and content/ and storage/ independent. |
| 14 # crbug.com/257943 | 14 # crbug.com/257943 |
| 15 "drive_uploader\.cc": [ | 15 "drive_uploader\.cc": [ |
| 16 "+content/public/browser/power_save_blocker.h", | 16 "+content/public/browser/power_save_blocker.h", |
| 17 ], | 17 ], |
| 18 | 18 |
| 19 # The following test dependencies should be removed to fully componentize this | 19 # The following test dependencies should be removed to fully componentize this |
| 20 # directory. crbug.com/498951 | 20 # directory. crbug.com/498951 |
| 21 r"(drive_test_util\.h" | 21 r"(drive_test_util\.h" |
| 22 r")": [ | 22 r")": [ |
| 23 "+content/public/test/test_utils.h", | 23 "+content/public/test/test_utils.h", |
| 24 ], | 24 ], |
| 25 | 25 |
| 26 # The following test dependencies should be removed to fully componentize this | 26 # The following test dependencies should be removed to fully componentize this |
| 27 # directory. crbug.com/498951 | 27 # directory. crbug.com/498951 |
| 28 r"(file_cache_unittest.cc" | 28 r"(change_list_loader_unittest.cc" |
| 29 r"|change_list_processor_unittest.cc" |
| 30 r"|file_cache_unittest.cc" |
| 29 r"|file_system_core_util_unittest.cc" | 31 r"|file_system_core_util_unittest.cc" |
| 30 r"|job_scheduler_unittest.cc" | 32 r"|job_scheduler_unittest.cc" |
| 31 r"|resource_metadata_storage_unittest.cc" | 33 r"|resource_metadata_storage_unittest.cc" |
| 32 r"|resource_metadata_unittest.cc" | 34 r"|resource_metadata_unittest.cc" |
| 33 r")": [ | 35 r")": [ |
| 34 "+content/public/test/test_browser_thread_bundle.h", | 36 "+content/public/test/test_browser_thread_bundle.h", |
| 35 ], | 37 ], |
| 36 | 38 |
| 37 # The dependency below is ok and can stay here for the long-term, because it | 39 # The dependency below is ok and can stay here for the long-term, because it |
| 38 # is guarded by #if defined(OS_CHROMEOS) in the source code. | 40 # is guarded by #if defined(OS_CHROMEOS) in the source code. |
| 39 r"(drive_test_util.h" | 41 r"(drive_test_util.h" |
| 40 r"|file_cache.cc" | 42 r"|file_cache.cc" |
| 41 r")": [ | 43 r")": [ |
| 42 "+third_party/cros_system_api/constants/cryptohome.h", | 44 "+third_party/cros_system_api/constants/cryptohome.h", |
| 43 ], | 45 ], |
| 44 } | 46 } |
| OLD | NEW |