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", | |
6 "+google_apis", | 5 "+google_apis", |
7 "+google/cacheinvalidation/types.pb.h", | 6 "+google/cacheinvalidation/types.pb.h", |
8 "+net", | 7 "+net", |
9 "+third_party/leveldatabase", | 8 "+third_party/leveldatabase", |
10 "+third_party/re2", | 9 "+third_party/re2", |
11 ] | 10 ] |
12 | 11 |
13 specific_include_rules = { | 12 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 |
14 # The following test dependencies should be removed to fully componentize this | 20 # The following test dependencies should be removed to fully componentize this |
15 # directory. crbug.com/498951 | 21 # directory. crbug.com/498951 |
16 r"(copy_operation_unittest\.cc" | 22 r"(copy_operation_unittest\.cc" |
17 r"|create_directory_operation_unittest\.cc" | 23 r"|create_directory_operation_unittest\.cc" |
18 r"|create_file_operation_unittest\.cc" | 24 r"|create_file_operation_unittest\.cc" |
19 r"|download_operation_unittest\.cc" | 25 r"|download_operation_unittest\.cc" |
20 r"|drive_test_util\.h" | 26 r"|drive_test_util\.h" |
21 r"|entry_revert_performer_unittest\.cc" | 27 r"|entry_revert_performer_unittest\.cc" |
22 r"|entry_update_performer_unittest\.cc" | 28 r"|entry_update_performer_unittest\.cc" |
23 r"|get_file_for_saving_operation_unittest\.cc" | 29 r"|get_file_for_saving_operation_unittest\.cc" |
(...skipping 25 matching lines...) Loading... |
49 r"|resource_metadata_storage_unittest\.cc" | 55 r"|resource_metadata_storage_unittest\.cc" |
50 r"|resource_metadata_unittest\.cc" | 56 r"|resource_metadata_unittest\.cc" |
51 r"|search_metadata_unittest\.cc" | 57 r"|search_metadata_unittest\.cc" |
52 r"|sync_client_unittest\.cc" | 58 r"|sync_client_unittest\.cc" |
53 r")": [ | 59 r")": [ |
54 "+content/public/test/test_browser_thread_bundle.h", | 60 "+content/public/test/test_browser_thread_bundle.h", |
55 ], | 61 ], |
56 | 62 |
57 # The following test dependencies should be removed to fully componentize this | 63 # The following test dependencies should be removed to fully componentize this |
58 # directory. crbug.com/498951 | 64 # directory. crbug.com/498951 |
59 r"(drive_uploader\.cc" | 65 r"(fake_file_system\.cc" |
60 r"|fake_file_system\.cc" | 66 r"|file_system_unittest.cc" |
61 r"|file_system_unittest\.cc" | |
62 r"|file_write_watcher_unittest\.cc" | 67 r"|file_write_watcher_unittest\.cc" |
63 r"|get_file_for_saving_operation_unittest\.cc" | 68 r"|get_file_for_saving_operation_unittest\.cc" |
64 r"|operation_test_base\.cc" | 69 r"|operation_test_base\.cc" |
65 r")": [ | 70 r")": [ |
66 "+content/public/browser/browser_thread.h", | 71 "+content/public/browser/browser_thread.h", |
67 ], | 72 ], |
68 | 73 |
69 # 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 |
70 # is guarded by #if defined(OS_CHROMEOS) in the source code. | 75 # is guarded by #if defined(OS_CHROMEOS) in the source code. |
71 "file_cache\.h": [ | 76 "file_cache\.h": [ |
72 "+third_party/cros_system_api/constants/cryptohome.h", | 77 "+third_party/cros_system_api/constants/cryptohome.h", |
73 ], | 78 ], |
74 } | 79 } |
OLD | NEW |