| 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 "+components/invalidation", |
| 13 ] | 14 ] |
| 14 | 15 |
| 15 specific_include_rules = { | 16 specific_include_rules = { |
| 16 # These files will stay. | 17 # These files will stay. |
| 17 r"(cloud_policy_browsertest|" | 18 r"(cloud_policy_browsertest|" |
| 18 r"cloud_policy_manager_browsertest|" | 19 r"cloud_policy_manager_browsertest|" |
| 19 r"component_cloud_policy_browsertest|" | 20 r"component_cloud_policy_browsertest|" |
| 20 r"device_management_service_browsertest|" | 21 r"device_management_service_browsertest|" |
| 21 r"test_request_interceptor|" | 22 r"test_request_interceptor|" |
| 22 r"policy_header_service_factory|" | 23 r"policy_header_service_factory|" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 39 ], | 40 ], |
| 40 | 41 |
| 41 r"cloud_policy_browsertest.cc": [ | 42 r"cloud_policy_browsertest.cc": [ |
| 42 "+sync/internal_api/public/base/invalidation.h", | 43 "+sync/internal_api/public/base/invalidation.h", |
| 43 ], | 44 ], |
| 44 | 45 |
| 45 r"cloud_policy_invalidator.h": [ | 46 r"cloud_policy_invalidator.h": [ |
| 46 "+sync/internal_api/public/base/invalidation.h", | 47 "+sync/internal_api/public/base/invalidation.h", |
| 47 ], | 48 ], |
| 48 | 49 |
| 49 # TODO(joaodasilva): remove these exceptions. | |
| 50 r"cloud_policy_invalidator\.cc": [ | |
| 51 "+chrome/browser/invalidation/invalidation_service.h", | |
| 52 ], | |
| 53 | |
| 54 r"cloud_policy_invalidator_unittest\.cc": [ | 50 r"cloud_policy_invalidator_unittest\.cc": [ |
| 55 "+chrome/browser/invalidation/fake_invalidation_service.h", | 51 "+chrome/browser/invalidation/fake_invalidation_service.h", |
| 56 ], | 52 ], |
| 57 } | 53 } |
| OLD | NEW |