| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+content/app/strings/grit", # For generated headers | 2 "+content/app/strings/grit", # For generated headers |
| 3 "+content/public/browser", | 3 "+content/public/browser", |
| 4 "+device/battery", # For battery status service. | |
| 5 "+media/audio", # For audio input for speech input feature. | 4 "+media/audio", # For audio input for speech input feature. |
| 6 "+media/base", # For Android JNI registration. | 5 "+media/base", # For Android JNI registration. |
| 7 "+media/midi", # For Web MIDI API | 6 "+media/midi", # For Web MIDI API |
| 8 "+media/video", # For Video Device monitoring in Mac. | 7 "+media/video", # For Video Device monitoring in Mac. |
| 9 "+mojo", | 8 "+mojo", |
| 10 "+sql", | 9 "+sql", |
| 11 "+ui/webui", | 10 "+ui/webui", |
| 12 "+win8/util", | 11 "+win8/util", |
| 13 | 12 |
| 14 # TODO(joi): This was misplaced; need to move it somewhere else, | 13 # TODO(joi): This was misplaced; need to move it somewhere else, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 30 | 29 |
| 31 # Allow non-browser Chrome OS code to be used. | 30 # Allow non-browser Chrome OS code to be used. |
| 32 "+chromeos", | 31 "+chromeos", |
| 33 "+third_party/cros_system_api", | 32 "+third_party/cros_system_api", |
| 34 | 33 |
| 35 "-webkit/renderer", | 34 "-webkit/renderer", |
| 36 | 35 |
| 37 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 36 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
| 38 # header-only types, and some selected common code. | 37 # header-only types, and some selected common code. |
| 39 "-third_party/WebKit", | 38 "-third_party/WebKit", |
| 39 "+third_party/WebKit/public/platform/WebBatteryStatus.h", |
| 40 "+third_party/WebKit/public/platform/WebCircularGeofencingRegion.h", | 40 "+third_party/WebKit/public/platform/WebCircularGeofencingRegion.h", |
| 41 "+third_party/WebKit/public/platform/WebCursorInfo.h", | 41 "+third_party/WebKit/public/platform/WebCursorInfo.h", |
| 42 "+third_party/WebKit/public/platform/WebGamepad.h", | 42 "+third_party/WebKit/public/platform/WebGamepad.h", |
| 43 "+third_party/WebKit/public/platform/WebGamepads.h", | 43 "+third_party/WebKit/public/platform/WebGamepads.h", |
| 44 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", | 44 "+third_party/WebKit/public/platform/WebGraphicsContext3D.h", |
| 45 "+third_party/WebKit/public/platform/WebIDBDatabaseException.h", | 45 "+third_party/WebKit/public/platform/WebIDBDatabaseException.h", |
| 46 "+third_party/WebKit/public/platform/WebIDBTypes.h", | 46 "+third_party/WebKit/public/platform/WebIDBTypes.h", |
| 47 "+third_party/WebKit/public/platform/WebReferrerPolicy.h", | 47 "+third_party/WebKit/public/platform/WebReferrerPolicy.h", |
| 48 "+third_party/WebKit/public/platform/WebLockOrientationError.h", | 48 "+third_party/WebKit/public/platform/WebLockOrientationError.h", |
| 49 "+third_party/WebKit/public/platform/WebNotificationPermission.h", | 49 "+third_party/WebKit/public/platform/WebNotificationPermission.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 75 "+third_party/WebKit/public/web/WebTextDirection.h", | 75 "+third_party/WebKit/public/web/WebTextDirection.h", |
| 76 "+third_party/WebKit/public/web/WebTextInputType.h", | 76 "+third_party/WebKit/public/web/WebTextInputType.h", |
| 77 | 77 |
| 78 # These should be burned down. http://crbug.com/237267 | 78 # These should be burned down. http://crbug.com/237267 |
| 79 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", | 79 "!third_party/WebKit/public/web/mac/WebInputEventFactory.h", |
| 80 | 80 |
| 81 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! | 81 # DO NOT ADD ANY CHROME OR COMPONENTS INCLUDES HERE!!! |
| 82 # See https://sites.google.com/a/chromium.org/dev/developers/content-module | 82 # See https://sites.google.com/a/chromium.org/dev/developers/content-module |
| 83 # for more information. | 83 # for more information. |
| 84 ] | 84 ] |
| OLD | NEW |