OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
| 2 # Chrome under mustash cannot call directly into ash internals. |
| 3 "-ash", |
| 4 "+ash/public", |
2 "+components/captive_portal", | 5 "+components/captive_portal", |
3 ] | 6 ] |
| 7 |
| 8 specific_include_rules = { |
| 9 # TODO(jamescook): Eliminate these. |
| 10 "network_portal_notification_controller\.cc": [ |
| 11 "+ash/common/system/system_notifier.h", |
| 12 "+ash/common/system/tray/system_tray_notifier.h", |
| 13 "+ash/common/wm_shell.h", |
| 14 ], |
| 15 "network_state_notifier\.cc": [ |
| 16 "+ash/common/system/system_notifier.h", |
| 17 "+ash/resources/grit/ash_resources.h", |
| 18 ], |
| 19 } |
OLD | NEW |