OLD | NEW |
(Empty) | |
| 1 # Do NOT add chrome to the list below. We shouldn't be including files from |
| 2 # src/chrome in src/webkit. |
| 3 include_rules = [ |
| 4 "+net", |
| 5 |
| 6 # TEMPORARY ONLY WHILE WE REDUCE THE DEPENDENCIES. |
| 7 # When the src\content refactoring is complete, this will be unnecessary (and |
| 8 # in fact, a layering violation). |
| 9 "+chrome", |
| 10 |
| 11 # Don't allow inclusion of these other libs we shouldn't be calling directly. |
| 12 "-v8", |
| 13 "-tools", |
| 14 |
| 15 # Allow inclusion of WebKit API files. |
| 16 "+third_party/WebKit/Source/WebKit/chromium", |
| 17 |
| 18 # Allow inclusion of third-party code: |
| 19 "+third_party/mozilla", # Mozilla interface headers. |
| 20 "+third_party/npapi", # NPAPI interface headers. |
| 21 "+third_party/tcmalloc", # tcmallo |
| 22 "+third_party/GTM", # Google Toolbox for Mac. |
| 23 |
| 24 "+ui", |
| 25 ] |
OLD | NEW |