OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+components/policy/core/common", | 2 "+components/policy/core/common", |
3 "+device/bluetooth", # For BluetoothPermission | 3 "+device/bluetooth", # For BluetoothPermission |
4 "+device/usb", # For UsbDevicePermission | 4 "+device/usb", # For UsbDevicePermission |
5 "+libxml", | 5 "+libxml", |
6 "+ppapi/c", # For various types. | 6 "+ppapi/c", # For various types. |
7 "+skia", | 7 "+skia", |
8 ] | 8 ] |
| 9 |
| 10 specific_include_rules = { |
| 11 # The extensions client interface is the master arbiter of which |
| 12 # API schemas exist, so it needs to know about app APIs. |
| 13 "chrome_extensions_client\.cc": [ |
| 14 "+apps/common/api/generated_schemas.h", |
| 15 ], |
| 16 } |
OLD | NEW |