| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Do not add chrome/ as an allowed include. Components MUST NOT | 2 # Do not add chrome/ as an allowed include. |
| 3 # depend on anything under src/chrome. | |
| 4 "-chrome", | |
| 5 | 3 |
| 6 # Components should only depend on the public Content API, and on | 4 # Components should only depend on the public Content API, and on |
| 7 # layers below the Content Module. They must not depend on the | 5 # layers below the Content Module. They must not depend on the |
| 8 # implementation of the Content Module. | 6 # implementation of the Content Module. |
| 9 # | 7 # |
| 10 # Subdirectories of e.g. src/components/component_name should add | 8 # Subdirectories of e.g. src/components/component_name should add |
| 11 # the additional parts of the Content API that they need, | 9 # the additional parts of the Content API that they need, |
| 12 # e.g. components/component_name/browser/DEPS would add a | 10 # e.g. components/component_name/browser/DEPS would add a |
| 13 # "+content/public/browser" rule. | 11 # "+content/public/browser" rule. |
| 14 "-content", | |
| 15 "+content/public/common", | 12 "+content/public/common", |
| 16 | 13 |
| 17 # Dependencies of variations component. | 14 # Dependencies of variations component. |
| 18 "+third_party/mt19937ar", | 15 "+third_party/mt19937ar", |
| 19 ] | 16 ] |
| OLD | NEW |