| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "-chrome", | 2 "-chrome", |
| 3 "-content", | 3 "-content", |
| 4 "+chrome/browser/google_apis", | 4 "+chrome/browser/google_apis", |
| 5 | 5 |
| 6 # Temporarily needed, see http://crbug.com/146989 | 6 # Temporarily needed, see http://crbug.com/146989 |
| 7 "!chrome/browser/drive/drive_service_interface.h", | |
| 8 "!content/public/browser/browser_thread.h", | 7 "!content/public/browser/browser_thread.h", |
| 9 ] | 8 ] |
| 10 | 9 |
| 11 specific_include_rules = { | 10 specific_include_rules = { |
| 12 ".*_[a-z]+test\.cc": [ | 11 ".*_[a-z]+test\.cc": [ |
| 13 # Temporarily needed, see http://crbug.com/146989 | 12 # Temporarily needed, see http://crbug.com/146989 |
| 14 "!chrome/browser/chromeos/system/timezone_settings.h", | 13 "!chrome/browser/chromeos/system/timezone_settings.h", |
| 15 "!chrome/test/base/testing_browser_process.h", | |
| 16 "!chrome/test/base/testing_profile.h", | 14 "!chrome/test/base/testing_profile.h", |
| 17 "!content/public/test/test_browser_thread_bundle.h", | 15 "!content/public/test/test_browser_thread_bundle.h", |
| 18 "!content/public/test/test_utils.h", | |
| 19 ], | 16 ], |
| 20 "auth_service\.(h|cc)": [ | 17 "auth_service\.(h|cc)": [ |
| 21 "!chrome/browser/profiles/profile.h", | 18 "!chrome/browser/profiles/profile.h", |
| 22 "!chrome/browser/signin/token_service_factory.h", | 19 "!chrome/browser/signin/token_service_factory.h", |
| 23 "!chrome/browser/signin/token_service.h", | 20 "!chrome/browser/signin/token_service.h", |
| 24 "!chrome/common/chrome_notification_types.h", | 21 "!chrome/common/chrome_notification_types.h", |
| 25 "!content/public/browser/notification_details.h", | 22 "!content/public/browser/notification_details.h", |
| 26 "!content/public/browser/notification_observer.h", | 23 "!content/public/browser/notification_observer.h", |
| 27 "!content/public/browser/notification_registrar.h", | 24 "!content/public/browser/notification_registrar.h", |
| 28 "!content/public/browser/notification_source.h", | 25 "!content/public/browser/notification_source.h", |
| 29 "!content/public/browser/notification_types.h", | 26 "!content/public/browser/notification_types.h", |
| 30 ], | 27 ], |
| 31 "drive_uploader\.cc": [ | 28 "drive_uploader\.(h|cc)": [ |
| 29 "!chrome/browser/drive/drive_service_interface.h", |
| 32 "!content/public/browser/power_save_blocker.h", | 30 "!content/public/browser/power_save_blocker.h", |
| 33 ], | 31 ], |
| 34 "drive_uploader_unittest\.cc": [ | 32 "drive_uploader_unittest\.cc": [ |
| 33 "!chrome/browser/drive/drive_service_interface.h", |
| 35 "!chrome/browser/drive/dummy_drive_service.h", | 34 "!chrome/browser/drive/dummy_drive_service.h", |
| 36 ], | 35 ], |
| 37 } | 36 } |
| OLD | NEW |