| Index: public/blink.gyp
|
| diff --git a/public/blink.gyp b/public/blink.gyp
|
| index e62e94f9fae3efacfd397f85dcef0a9fe4e85966..aace8eecba1c3c1c4f46ef9b680c0c2f2a5d674c 100644
|
| --- a/public/blink.gyp
|
| +++ b/public/blink.gyp
|
| @@ -37,10 +37,26 @@
|
| 'type': 'none',
|
| 'dependencies': [
|
| '../Source/WebKit/chromium/WebKit.gyp:webkit',
|
| + 'blink_minimal',
|
| ],
|
| 'export_dependent_settings': [
|
| '../Source/WebKit/chromium/WebKit.gyp:webkit',
|
| + 'blink_minimal',
|
| ]
|
| },
|
| + {
|
| + # This target provides a minimal set of Blink APIs such as WebString to use in
|
| + # places that cannot link against the full Blink library.
|
| + # FIXME: We really shouldn't have this at all and should instead remove all uses
|
| + # of Blink's API types from places that can't link against Blink. crbug.com/248653
|
| + 'target_name': 'blink_minimal',
|
| + 'type': 'none',
|
| + 'dependencies': [
|
| + '../Source/WebKit/chromium/WebKit.gyp:blink_common',
|
| + ],
|
| + 'export_dependent_settings': [
|
| + '../Source/WebKit/chromium/WebKit.gyp:blink_common',
|
| + ],
|
| + },
|
| ],
|
| }
|
|
|