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

Unified Diff: public/blink.gyp

Issue 189393003: Create blink_headers target for header-only dependencies (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | « no previous file | no next file » | 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 ab7b7397c33ef274c1cb5c0d094073cfbfc86ccc..740d47401603b0dadae86d01e3f5fb9f54666a41 100644
--- a/public/blink.gyp
+++ b/public/blink.gyp
@@ -39,6 +39,7 @@
'../Source/web/web.gyp:blink_web',
'../Source/platform/blink_platform.gyp:blink_platform',
'blink_minimal',
+ 'blink_headers',
],
'export_dependent_settings': [
'../Source/web/web.gyp:blink_web',
@@ -47,6 +48,16 @@
],
},
{
+ # Depend on this target to use public blink API headers for things
+ # like enums and public structures without actually linking against any Blink
+ # libraries.
+ 'target_name': 'blink_headers',
+ 'type': 'none',
+ 'direct_dependent_settings': {
+ 'include_dirs': [ '..' ],
+ },
+ },
+ {
# 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698