| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+apps", | 2 "+apps", |
| 3 "+ash", | 3 "+ash", |
| 4 "+chrome/app", | 4 "+chrome/app", |
| 5 "+chrome/chrome_watcher", | 5 "+chrome/chrome_watcher", |
| 6 "+chrome/grit", # For generated headers | 6 "+chrome/grit", # For generated headers |
| 7 "+chrome/install_static", | 7 "+chrome/install_static", |
| 8 "+chrome/installer", | 8 "+chrome/installer", |
| 9 "+chrome_elf/blacklist", | 9 "+chrome_elf/blacklist", |
| 10 "+chrome_elf/chrome_elf_constants.h", | 10 "+chrome_elf/chrome_elf_constants.h", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "+third_party/WebKit/public/platform/modules/permissions/permission_status.moj
om.h", | 99 "+third_party/WebKit/public/platform/modules/permissions/permission_status.moj
om.h", |
| 100 "+third_party/WebKit/public/web/WebCache.h", | 100 "+third_party/WebKit/public/web/WebCache.h", |
| 101 "+third_party/WebKit/public/web/WebContextMenuData.h", | 101 "+third_party/WebKit/public/web/WebContextMenuData.h", |
| 102 "+third_party/WebKit/public/web/WebFindOptions.h", | 102 "+third_party/WebKit/public/web/WebFindOptions.h", |
| 103 "+third_party/WebKit/public/web/WebInputEvent.h", | 103 "+third_party/WebKit/public/web/WebInputEvent.h", |
| 104 "+third_party/WebKit/public/web/WebMediaPlayerAction.h", | 104 "+third_party/WebKit/public/web/WebMediaPlayerAction.h", |
| 105 "+third_party/WebKit/public/web/WebPluginAction.h", | 105 "+third_party/WebKit/public/web/WebPluginAction.h", |
| 106 "+third_party/WebKit/public/web/WebTextDirection.h", | 106 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 107 "+third_party/WebKit/public/web/WebWindowFeatures.h", | 107 "+third_party/WebKit/public/web/WebWindowFeatures.h", |
| 108 ] | 108 ] |
| 109 |
| 110 specific_include_rules = { |
| 111 # Exploits don't abide by DEPS; so all IPC message definitions are fair game |
| 112 # in this type of test. |
| 113 'chrome_security_exploit_browsertest\.cc' : [ |
| 114 '+content/common', |
| 115 ], |
| 116 } |
| OLD | NEW |