OLD | NEW |
1 # The //chrome/browser/policy code is being converted into a component at | 1 # The //chrome/browser/policy code is being converted into a component at |
2 # //components/policy. This DEPS file is temporarily restricting the include | 2 # //components/policy. This DEPS file is temporarily restricting the include |
3 # rules for this code; once all the exceptions are fixed then the code will | 3 # rules for this code; once all the exceptions are fixed then the code will |
4 # be moved, and this file will be removed. | 4 # be moved, and this file will be removed. |
5 # http://crbug.com/271392 | 5 # http://crbug.com/271392 |
6 | 6 |
7 include_rules = [ | 7 include_rules = [ |
8 "-chrome", | 8 "-chrome", |
9 "-chromeos", | 9 "-chromeos", |
10 "-content", | 10 "-content", |
11 "+chrome/browser/policy", | 11 "+chrome/browser/policy", |
12 "+chrome/browser/policy/cloud", | 12 "+chrome/browser/policy/cloud", |
13 ] | 13 ] |
14 | 14 |
15 specific_include_rules = { | 15 specific_include_rules = { |
16 # These files will stay. | 16 # These files will stay. |
17 r"(cloud_policy_browsertest|" | 17 r"(cloud_policy_browsertest|" |
18 r"cloud_policy_manager_browsertest|" | 18 r"cloud_policy_manager_browsertest|" |
19 r"component_cloud_policy_browsertest|" | 19 r"component_cloud_policy_browsertest|" |
20 r"device_management_service_browsertest|" | 20 r"device_management_service_browsertest|" |
21 r"test_request_interceptor|" | 21 r"test_request_interceptor|" |
| 22 r"user_cloud_policy_invalidator|" |
| 23 r"user_cloud_policy_invalidator_factory|" |
| 24 r"user_cloud_policy_manager_factory|" |
22 r"user_policy_signin_service_android|" | 25 r"user_policy_signin_service_android|" |
23 r"user_policy_signin_service_base|" | 26 r"user_policy_signin_service_base|" |
24 r"user_policy_signin_service|" | 27 r"user_policy_signin_service|" |
25 r"user_policy_signin_service_factory|" | 28 r"user_policy_signin_service_factory|" |
26 r"user_policy_signin_service_unittest)" | 29 r"user_policy_signin_service_unittest)" |
27 r"\.(cc|h)": [ | 30 r"\.(cc|h)": [ |
28 "+chrome", | 31 "+chrome", |
29 "+chromeos", | 32 "+chromeos", |
30 "+content/public/browser", | 33 "+content/public/browser", |
31 "+content/public/common", | 34 "+content/public/common", |
(...skipping 10 matching lines...) Expand all Loading... |
42 ], | 45 ], |
43 | 46 |
44 # TODO(joaodasilva): remove these exceptions. | 47 # TODO(joaodasilva): remove these exceptions. |
45 r"cloud_policy_invalidator\.cc": [ | 48 r"cloud_policy_invalidator\.cc": [ |
46 "+chrome/browser/invalidation/invalidation_service.h", | 49 "+chrome/browser/invalidation/invalidation_service.h", |
47 ], | 50 ], |
48 | 51 |
49 r"cloud_policy_invalidator_unittest\.cc": [ | 52 r"cloud_policy_invalidator_unittest\.cc": [ |
50 "+chrome/browser/invalidation/fake_invalidation_service.h", | 53 "+chrome/browser/invalidation/fake_invalidation_service.h", |
51 ], | 54 ], |
52 | |
53 r"cloud_policy_manager_unittest\.cc": [ | |
54 "+chrome/browser/invalidation/fake_invalidation_service.h", | |
55 ], | |
56 | |
57 r"user_cloud_policy_invalidator\.cc": [ | |
58 "+chrome/browser/chrome_notification_types.h", | |
59 "+chrome/browser/invalidation/invalidation_service_factory.h", | |
60 "+content/public/browser/notification_source.h", | |
61 ], | |
62 | |
63 r"user_cloud_policy_invalidator_factory\.cc": [ | |
64 "+chrome/browser/invalidation/invalidation_service_factory.h", | |
65 "+chrome/browser/profiles/profile.h", | |
66 "+chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h", | |
67 "+chrome/browser/chromeos/policy/user_cloud_policy_manager_factory_chromeos.
h", | |
68 ], | |
69 | |
70 r"user_cloud_policy_invalidator\.h": [ | |
71 "+content/public/browser/notification_observer.h", | |
72 "+content/public/browser/notification_registrar.h", | |
73 ], | |
74 | |
75 r"user_cloud_policy_manager_factory\.cc": [ | |
76 "+content/public/browser/browser_context.h", | |
77 ], | |
78 } | 55 } |
OLD | NEW |