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

Unified Diff: public/blink.gyp

Issue 15079005: Create a minimal webkit_common static library for use in browser process (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: public/blink.gyp
diff --git a/public/blink.gyp b/public/blink.gyp
index e62e94f9fae3efacfd397f85dcef0a9fe4e85966..e9fc291155b303f330e33cf304e37936bbc67f72 100644
--- a/public/blink.gyp
+++ b/public/blink.gyp
@@ -37,10 +37,22 @@
'type': 'none',
'dependencies': [
'../Source/WebKit/chromium/WebKit.gyp:webkit',
+ 'blink_minimal',
],
'export_dependent_settings': [
'../Source/WebKit/chromium/WebKit.gyp:webkit',
+ 'blink_minimal',
]
},
+ {
+ 'target_name': 'blink_minimal',
+ 'type': 'none',
+ 'dependencies': [
+ '../Source/common/common.gyp:blink_common',
jamesr 2013/06/06 21:47:56 the naming here is tricky since all target names h
+ ],
+ 'export_dependent_settings': [
+ '../Source/common/common.gyp:blink_common',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698