Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 include_rules = [ | |
| 2 "-ash", | |
| 3 "+ash/material_design", | |
| 4 "+ash/wm/common", | |
| 5 "+ash/wm/overview", | |
| 6 # Aura files should only be included from other aura files. | |
|
James Cook
2016/05/27 00:02:51
Do you want to add a comment somewhere explaining
sky
2016/05/27 03:18:03
I added a README.md to ash along with a pointer he
| |
| 7 "-ash/wm/overview/scoped_overview_animation_settings_aura.h", | |
| 8 "-ash/wm/overview/scoped_overview_animation_settings_factory_aura.h", | |
| 9 "+ash/ash_export.h", | |
| 10 "+ash/ash_switches.h", | |
| 11 "+ui", | |
| 12 "-ui/aura", | |
| 13 ] | |
| 14 | |
| 15 specific_include_rules = { | |
| 16 ".*aura\..*": [ | |
| 17 "+ash/wm/aura", | |
| 18 "+ash/wm/overview", | |
|
James Cook
2016/05/27 00:02:51
This is in the include_rules above.
sky
2016/05/27 03:18:03
This is a short cut to allow the aura files to inc
James Cook
2016/05/27 16:04:02
Ah, OK.
| |
| 19 "+ui/aura", | |
| 20 ], | |
| 21 # TODO(sky): refactor. Do not add more. | |
| 22 "window_selector.cc": [ | |
| 23 "+ash/accessibility_delegate.h", | |
| 24 "+ash/shell.h", | |
| 25 ], | |
| 26 # TODO(sky): refactor. Do not add more. | |
| 27 "window_selector_controller.cc": [ | |
| 28 "+ash/session/session_state_delegate.h", | |
| 29 "+ash/shell.h", | |
| 30 "+ash/system/tray/system_tray_delegate.h", | |
| 31 ], | |
| 32 ".*test.*": [ | |
| 33 "+ash", | |
| 34 "+ui/aura", | |
| 35 ], | |
| 36 } | |
| OLD | NEW |