| 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 # TODO(jam): remove this | |
| 10 "+content/renderer/pepper/plugin_module.h", | |
| 11 | |
| 12 # TODO(ananta|jamesr|scottmg) http://crbug.com/237249 | 9 # TODO(ananta|jamesr|scottmg) http://crbug.com/237249 |
| 13 "!webkit/child/websocketstreamhandle_impl.h", | 10 "!webkit/child/websocketstreamhandle_impl.h", |
| 14 | 11 |
| 15 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 12 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
| 16 # header-only types, and some selected common code. | 13 # header-only types, and some selected common code. |
| 17 "-third_party/WebKit", | 14 "-third_party/WebKit", |
| 18 "+third_party/WebKit/public/platform/WebCString.h", | 15 "+third_party/WebKit/public/platform/WebCString.h", |
| 19 "+third_party/WebKit/public/platform/WebDeviceMotionData.h", | 16 "+third_party/WebKit/public/platform/WebDeviceMotionData.h", |
| 20 "+third_party/WebKit/public/platform/WebFloatPoint.h", | 17 "+third_party/WebKit/public/platform/WebFloatPoint.h", |
| 21 "+third_party/WebKit/public/platform/WebFloatRect.h", | 18 "+third_party/WebKit/public/platform/WebFloatRect.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 48 "!third_party/WebKit/public/platform/WebHTTPBody.h", | 45 "!third_party/WebKit/public/platform/WebHTTPBody.h", |
| 49 "!third_party/WebKit/public/web/WebDatabase.h", | 46 "!third_party/WebKit/public/web/WebDatabase.h", |
| 50 ] | 47 ] |
| 51 | 48 |
| 52 specific_include_rules = { | 49 specific_include_rules = { |
| 53 # Java bridge code passes NPAPI types to the browser process. Crazy! | 50 # Java bridge code passes NPAPI types to the browser process. Crazy! |
| 54 "java_bridge_messages\.h": [ | 51 "java_bridge_messages\.h": [ |
| 55 "+content/child" | 52 "+content/child" |
| 56 ] | 53 ] |
| 57 } | 54 } |
| OLD | NEW |