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. |
4 "+media/audio", # For audio input for speech input feature. | 5 "+media/audio", # For audio input for speech input feature. |
5 "+media/base", # For Android JNI registration. | 6 "+media/base", # For Android JNI registration. |
6 "+media/midi", # For Web MIDI API | 7 "+media/midi", # For Web MIDI API |
7 "+media/video", # For Video Device monitoring in Mac. | 8 "+media/video", # For Video Device monitoring in Mac. |
8 "+mojo", | 9 "+mojo", |
9 "+sql", | 10 "+sql", |
10 "+ui/webui", | 11 "+ui/webui", |
11 "+win8/util", | 12 "+win8/util", |
12 | 13 |
13 # TODO(joi): This was misplaced; need to move it somewhere else, | 14 # TODO(joi): This was misplaced; need to move it somewhere else, |
(...skipping 15 matching lines...) Expand all Loading... |
29 | 30 |
30 # Allow non-browser Chrome OS code to be used. | 31 # Allow non-browser Chrome OS code to be used. |
31 "+chromeos", | 32 "+chromeos", |
32 "+third_party/cros_system_api", | 33 "+third_party/cros_system_api", |
33 | 34 |
34 "-webkit/renderer", | 35 "-webkit/renderer", |
35 | 36 |
36 # No inclusion of WebKit from the browser, other than strictly enum/POD, | 37 # No inclusion of WebKit from the browser, other than strictly enum/POD, |
37 # header-only types, and some selected common code. | 38 # header-only types, and some selected common code. |
38 "-third_party/WebKit", | 39 "-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 |