| OLD | NEW |
| (Empty) |
| 1 # See ash/README.md for details on why aura is not allowed here. | |
| 2 | |
| 3 include_rules = [ | |
| 4 "-ash", | |
| 5 "+ash/common", | |
| 6 "+ash/material_design", | |
| 7 "+ash/wm/overview", | |
| 8 # Aura files should only be included from other aura files. | |
| 9 "-ash/wm/overview/scoped_overview_animation_settings_aura.h", | |
| 10 "-ash/wm/overview/scoped_overview_animation_settings_factory_aura.h", | |
| 11 "+ash/ash_export.h", | |
| 12 "+ash/ash_switches.h", | |
| 13 "+ui", | |
| 14 "-ui/aura", | |
| 15 ] | |
| 16 | |
| 17 specific_include_rules = { | |
| 18 ".*aura\..*": [ | |
| 19 "+ash/aura", | |
| 20 "+ash/wm/overview", | |
| 21 "+ui/aura", | |
| 22 ], | |
| 23 # TODO(sky): refactor. Do not add more. | |
| 24 "window_selector_controller.cc": [ | |
| 25 "+ash/shell.h", | |
| 26 "+ash/system/tray/system_tray_delegate.h", | |
| 27 ], | |
| 28 ".*test.*": [ | |
| 29 "+ash", | |
| 30 "+ui/aura", | |
| 31 ], | |
| 32 } | |
| OLD | NEW |