Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: public/blink.gyp

Issue 16024011: Construct a minimal blink library in-place (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix mac again Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp ('k') | public/platform/WebCString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
+ ],
+ },
],
}
« no previous file with comments | « Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp ('k') | public/platform/WebCString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698