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

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 typo 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..c33a14e0a26ecf5044e1171cb49e96ebc86bdc62 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',
darin (slow to review) 2013/06/10 22:05:38 You might want to add some comments explaining wha
+ 'type': 'none',
+ 'dependencies': [
+ '../Source/WebKit/chromium/WebKit.gyp:blink_common',
+ ],
+ 'export_dependent_settings': [
+ '../Source/WebKit/chromium/WebKit.gyp:blink_common',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698