| OLD | NEW |
| 1 # This code should not depend on Views. | 1 # This code should not depend on Views. |
| 2 | 2 |
| 3 include_rules = [ | 3 include_rules = [ |
| 4 "-ui/views", | 4 "-ui/views", |
| 5 "+ui/views/corewm", | 5 "+ui/views/corewm", |
| 6 "+ui/views/views_export.h", | 6 "+ui/views/views_export.h", |
| 7 ] | 7 ] |
| 8 | 8 |
| 9 # TODO: temporary, don't add more. | 9 # TODO: temporary, don't add more. |
| 10 specific_include_rules = { | 10 specific_include_rules = { |
| 11 "tooltip_controller.cc": [ | 11 "tooltip_controller.cc": [ |
| 12 "+ui/views/widget/tooltip_manager.h", | 12 "+ui/views/widget/tooltip_manager.h", |
| 13 ], | 13 ], |
| 14 | 14 |
| 15 "window_util.cc": [ | 15 "window_util.cc": [ |
| 16 "+ui/views/view.h", | 16 "+ui/views/view.h", |
| 17 "+ui/views/widget/widget.h", | 17 "+ui/views/widget/widget.h", |
| 18 ], | 18 ], |
| 19 | 19 |
| 20 "window_util_unittest.cc": [ | 20 "window_util_unittest.cc": [ |
| 21 "+ui/views/view_constants_aura.h", | 21 "+ui/views/view_constants_aura.h", |
| 22 "+ui/views/widget/widget.h", | 22 "+ui/views/widget/widget.h", |
| 23 ], | 23 ], |
| 24 | 24 |
| 25 "window_animations.cc": [ | |
| 26 "+ui/views/view.h", | |
| 27 "+ui/views/widget/widget.h", | |
| 28 ], | |
| 29 | |
| 30 "tooltip_aura.cc": [ | 25 "tooltip_aura.cc": [ |
| 31 "+ui/views/background.h", | 26 "+ui/views/background.h", |
| 32 "+ui/views/border.h", | 27 "+ui/views/border.h", |
| 33 "+ui/views/widget/widget.h", | 28 "+ui/views/widget/widget.h", |
| 34 ], | 29 ], |
| 35 | 30 |
| 36 "desktop_capture_controller_unittest.cc": [ | 31 "desktop_capture_controller_unittest.cc": [ |
| 37 "+ui/views/test/views_test_base.h", | 32 "+ui/views/test/views_test_base.h", |
| 38 "+ui/views/view.h", | 33 "+ui/views/view.h", |
| 39 "+ui/views/widget/desktop_aura/desktop_native_widget_aura.h", | 34 "+ui/views/widget/desktop_aura/desktop_native_widget_aura.h", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 61 | 56 |
| 62 "capture_controller_unittest.cc": [ | 57 "capture_controller_unittest.cc": [ |
| 63 "+ui/views/test/views_test_base.h", | 58 "+ui/views/test/views_test_base.h", |
| 64 "+ui/views/view.h", | 59 "+ui/views/view.h", |
| 65 "+ui/views/widget/desktop_aura/desktop_native_widget_aura.h", | 60 "+ui/views/widget/desktop_aura/desktop_native_widget_aura.h", |
| 66 "+ui/views/widget/desktop_aura/desktop_screen_position_client.h", | 61 "+ui/views/widget/desktop_aura/desktop_screen_position_client.h", |
| 67 "+ui/views/widget/root_view.h", | 62 "+ui/views/widget/root_view.h", |
| 68 "+ui/views/widget/widget.h", | 63 "+ui/views/widget/widget.h", |
| 69 ], | 64 ], |
| 70 } | 65 } |
| OLD | NEW |