| OLD | NEW |
| (Empty) | |
| 1 include_rules = [ |
| 2 # The core bindings module is designed to be independent of the extensions |
| 3 # system. |
| 4 # TODO(devlin): We could move bindings to be a //component, if we wanted. |
| 5 "-extensions/renderer", |
| 6 "+extensions/renderer/bindings", |
| 7 |
| 8 "-extensions/common", |
| 9 # We allow a few specific includes around event filtering, since these are |
| 10 # necessary for filtered listeners and do not themselves include any |
| 11 # extensions system knowledge. |
| 12 "+extensions/common/event_filter.h", |
| 13 "+extensions/common/event_filtering_info.h", |
| 14 "+extensions/common/event_matcher.h", |
| 15 "+extensions/common/value_counter.h", |
| 16 ] |
| 17 |
| 18 specific_include_rules = { |
| 19 # Allow tests to include extensions system files. Typically, this shouldn't |
| 20 # be necessary, but it can be useful. |
| 21 ".*test\.(cc|h)$": [ |
| 22 "+extensions/renderer", |
| 23 "+extensions/common", |
| 24 ] |
| 25 } |
| OLD | NEW |