| 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(ananta|jamesr|scottmg) http://crbug.com/237249 | |
| 10 "!webkit/child/websocketstreamhandle_impl.h", | |
| 11 | |
| 12 # 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, |
| 13 # header-only types, and some selected common code. | 10 # header-only types, and some selected common code. |
| 14 "-third_party/WebKit", | 11 "-third_party/WebKit", |
| 15 "+third_party/WebKit/public/platform/WebCString.h", | 12 "+third_party/WebKit/public/platform/WebCString.h", |
| 16 "+third_party/WebKit/public/platform/WebDeviceMotionData.h", | 13 "+third_party/WebKit/public/platform/WebDeviceMotionData.h", |
| 17 "+third_party/WebKit/public/platform/WebFloatPoint.h", | 14 "+third_party/WebKit/public/platform/WebFloatPoint.h", |
| 18 "+third_party/WebKit/public/platform/WebFloatRect.h", | 15 "+third_party/WebKit/public/platform/WebFloatRect.h", |
| 19 "+third_party/WebKit/public/platform/WebGamepads.h", | 16 "+third_party/WebKit/public/platform/WebGamepads.h", |
| 20 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", | 17 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", |
| 21 "+third_party/WebKit/public/platform/WebIDBCallbacks.h", | 18 "+third_party/WebKit/public/platform/WebIDBCallbacks.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 44 "!third_party/WebKit/public/platform/WebHTTPBody.h", | 41 "!third_party/WebKit/public/platform/WebHTTPBody.h", |
| 45 "!third_party/WebKit/public/web/WebDatabase.h", | 42 "!third_party/WebKit/public/web/WebDatabase.h", |
| 46 ] | 43 ] |
| 47 | 44 |
| 48 specific_include_rules = { | 45 specific_include_rules = { |
| 49 # Java bridge code passes NPAPI types to the browser process. Crazy! | 46 # Java bridge code passes NPAPI types to the browser process. Crazy! |
| 50 "java_bridge_messages\.h": [ | 47 "java_bridge_messages\.h": [ |
| 51 "+content/child" | 48 "+content/child" |
| 52 ] | 49 ] |
| 53 } | 50 } |
| OLD | NEW |