| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+media/audio", | 2 "+media/audio", |
| 3 "+media/base", | 3 "+media/base", |
| 4 "-webkit/browser", | 4 "-webkit/browser", |
| 5 "-webkit/child", | 5 "-webkit/child", |
| 6 "-webkit/renderer", | 6 "-webkit/renderer", |
| 7 | 7 |
| 8 # TODO(ananta|jamesr|scottmg) http://crbug.com/237249 |
| 9 "!webkit/child/websocketstreamhandle_impl.h", |
| 10 |
| 8 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 11 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
| 9 # header-only types, and some selected common code. | 12 # header-only types, and some selected common code. |
| 10 "-third_party/WebKit", | 13 "-third_party/WebKit", |
| 11 "+third_party/WebKit/public/platform/WebCString.h", | 14 "+third_party/WebKit/public/platform/WebCString.h", |
| 12 "+third_party/WebKit/public/platform/WebDeviceMotionData.h", | 15 "+third_party/WebKit/public/platform/WebDeviceMotionData.h", |
| 13 "+third_party/WebKit/public/platform/WebDeviceOrientationData.h", | 16 "+third_party/WebKit/public/platform/WebDeviceOrientationData.h", |
| 14 "+third_party/WebKit/public/platform/WebFloatPoint.h", | 17 "+third_party/WebKit/public/platform/WebFloatPoint.h", |
| 15 "+third_party/WebKit/public/platform/WebFloatRect.h", | 18 "+third_party/WebKit/public/platform/WebFloatRect.h", |
| 16 "+third_party/WebKit/public/platform/WebGamepads.h", | 19 "+third_party/WebKit/public/platform/WebGamepads.h", |
| 17 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", | 20 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 "+third_party/WebKit/public/web/WebTextDirection.h", | 45 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 43 "+third_party/WebKit/public/web/WebWindowFeatures.h", | 46 "+third_party/WebKit/public/web/WebWindowFeatures.h", |
| 44 ] | 47 ] |
| 45 | 48 |
| 46 specific_include_rules = { | 49 specific_include_rules = { |
| 47 # Java bridge code passes NPAPI types to the browser process. Crazy! | 50 # Java bridge code passes NPAPI types to the browser process. Crazy! |
| 48 "java_bridge_messages\.h": [ | 51 "java_bridge_messages\.h": [ |
| 49 "+content/child" | 52 "+content/child" |
| 50 ] | 53 ] |
| 51 } | 54 } |
| OLD | NEW |