| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+cc", | 2 "+cc", |
| 3 "+media/audio", | 3 "+media/audio", |
| 4 "+media/base", | 4 "+media/base", |
| 5 "-webkit/browser", | 5 "-webkit/browser", |
| 6 "-webkit/child", | 6 "-webkit/child", |
| 7 "-webkit/renderer", | 7 "-webkit/renderer", |
| 8 | 8 |
| 9 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 9 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
| 10 # header-only types, and some selected common code. | 10 # header-only types, and some selected common code. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "+third_party/WebKit/public/web/WebDragStatus.h", | 31 "+third_party/WebKit/public/web/WebDragStatus.h", |
| 32 "+third_party/WebKit/public/web/WebFindOptions.h", | 32 "+third_party/WebKit/public/web/WebFindOptions.h", |
| 33 "+third_party/WebKit/public/web/WebInputEvent.h", | 33 "+third_party/WebKit/public/web/WebInputEvent.h", |
| 34 "+third_party/WebKit/public/web/WebMediaPlayerAction.h", | 34 "+third_party/WebKit/public/web/WebMediaPlayerAction.h", |
| 35 "+third_party/WebKit/public/web/WebPluginAction.h", | 35 "+third_party/WebKit/public/web/WebPluginAction.h", |
| 36 "+third_party/WebKit/public/web/WebPopupType.h", | 36 "+third_party/WebKit/public/web/WebPopupType.h", |
| 37 "+third_party/WebKit/public/web/WebScreenInfo.h", | 37 "+third_party/WebKit/public/web/WebScreenInfo.h", |
| 38 "+third_party/WebKit/public/web/WebTextDirection.h", | 38 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 39 | 39 |
| 40 # These should be burned down. http://crbug.com/237267 | 40 # These should be burned down. http://crbug.com/237267 |
| 41 "!third_party/WebKit/public/platform/WebIDBDatabaseError.h", | |
| 42 "!third_party/WebKit/public/platform/WebIDBKey.h", | |
| 43 "!third_party/WebKit/public/platform/WebIDBKeyPath.h", | |
| 44 "!third_party/WebKit/public/platform/WebIDBKeyRange.h", | |
| 45 "!third_party/WebKit/public/platform/WebVector.h", | |
| 46 "!third_party/WebKit/public/platform/WebHTTPBody.h", | 41 "!third_party/WebKit/public/platform/WebHTTPBody.h", |
| 47 "!third_party/WebKit/public/web/WebDatabase.h", | 42 "!third_party/WebKit/public/web/WebDatabase.h", |
| 48 ] | 43 ] |
| 49 | 44 |
| 50 specific_include_rules = { | 45 specific_include_rules = { |
| 51 # Java bridge code passes NPAPI types to the browser process. Crazy! | 46 # Java bridge code passes NPAPI types to the browser process. Crazy! |
| 52 "java_bridge_messages\.h": [ | 47 "java_bridge_messages\.h": [ |
| 53 "+content/child" | 48 "+content/child" |
| 54 ] | 49 ] |
| 55 } | 50 } |
| OLD | NEW |