| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "-chrome", | 2 "-chrome", |
| 3 "+chrome/browser/chromeos/input_method", | 3 "+chrome/browser/chromeos/input_method", |
| 4 "-content", | 4 "-content", |
| 5 ] | 5 ] |
| 6 | 6 |
| 7 specific_include_rules = { | 7 specific_include_rules = { |
| 8 # The configuration layer. | 8 # The configuration layer. |
| 9 '(input_method_delegate_impl|input_method_persistence|browser_state_monitor)' | 9 '(input_method_delegate_impl|input_method_persistence|browser_state_monitor)' |
| 10 '(_unittest)?\.(h|cc)': [ | 10 '(_unittest)?\.(h|cc)': [ |
| 11 "+chrome/common", | 11 "+chrome/common", |
| 12 "+chrome/browser", | 12 "+chrome/browser", |
| 13 "+chrome/test", | 13 "+chrome/test", |
| 14 "+content/public", | 14 "+content/public", |
| 15 ], | 15 ], |
| 16 # TODO(erikwright): Bring this list to zero. | 16 # TODO(erikwright): Bring this list to zero. |
| 17 # | 17 # |
| 18 # Do not add to the list of temporarily-allowed dependencies below, | 18 # Do not add to the list of temporarily-allowed dependencies below, |
| 19 # and please do not introduce more #includes of these files. | 19 # and please do not introduce more #includes of these files. |
| 20 'input_method_manager_impl\.cc': [ | 20 'input_method_manager_impl\.cc': [ |
| 21 # TODO(erikwright): Much/all of language_preferences can/should be decoupled | 21 # TODO(erikwright): Much/all of language_preferences can/should be decoupled |
| 22 # from chrome/browser. | 22 # from chrome/browser. |
| 23 "!chrome/browser/chromeos/language_preferences.h" | 23 "!chrome/browser/chromeos/language_preferences.h" |
| 24 ], | 24 ], |
| 25 'ibus_controller_impl\.cc|xkeyboard\.cc': [ |
| 26 "!content/public/browser/browser_thread.h", |
| 27 ], |
| 28 'xkeyboard_unittest\.cc': [ |
| 29 "!content/public/test/test_browser_thread.h", |
| 30 ], |
| 25 } | 31 } |
| OLD | NEW |