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/re2", | 7 "+third_party/re2", |
8 ] | 8 ] |
9 | 9 |
10 specific_include_rules = { | 10 specific_include_rules = { |
11 # The following dependency should be removed to fully make this | 11 # The following dependency should be removed to fully make this |
12 # directory chrome/ and content/ and storage/ independent. | 12 # directory chrome/ and content/ and storage/ independent. |
13 # crbug.com/257943 | 13 # crbug.com/257943 |
14 "drive_api_util\.cc": [ | 14 "drive_api_util\.cc": [ |
15 "+storage/browser/fileapi/file_stream_reader.h" | 15 "+storage/browser/fileapi/file_stream_reader.h" |
16 ], | 16 ], |
17 | 17 |
18 # The following dependency should be removed to fully make this | 18 # The following dependency should be removed to fully make this |
19 # directory chrome/ and content/ and storage/ independent. | 19 # directory chrome/ and content/ and storage/ independent. |
20 # crbug.com/257943 | 20 # crbug.com/257943 |
21 "drive_uploader\.cc": [ | 21 "drive_uploader\.cc": [ |
22 "+content/public/browser/power_save_blocker.h", | 22 "+content/public/browser/power_save_blocker.h", |
23 ], | 23 ], |
| 24 |
| 25 # The following test dependencies should be removed to fully componentize this |
| 26 # directory. crbug.com/498951 |
| 27 r"(drive_test_util\.h" |
| 28 r")": [ |
| 29 "+content/public/test/test_utils.h", |
| 30 ], |
| 31 |
| 32 # The dependency below is ok and can stay here for the long-term, because it |
| 33 # is guarded by #if defined(OS_CHROMEOS) in the source code. |
| 34 "drive_test_util\.h": [ |
| 35 "+third_party/cros_system_api/constants/cryptohome.h", |
| 36 ], |
24 } | 37 } |
OLD | NEW |