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

Unified Diff: build/linux/system.gyp

Issue 223143004: Add chromecast_build gyp variable and add rules when the variable is set to 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporate review comments, especially add/modify rules to define more gyp variables when chromeca… Created 6 years, 8 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
« build/common.gypi ('K') | « build/filename_rules.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/system.gyp
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index dddf86a4eb50270ca93b9ff43f73ce18f16eb8ce..a60b3d55eeb67e3f37abcc2d7c6fcfb7edb47abd 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -1049,5 +1049,26 @@
}],
],
},
+ {
+ 'target_name': 'directfb',
+ 'type': 'none',
+ 'conditions': [
+ ['_toolset=="target"', {
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags directfb)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other directfb)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l directfb)',
+ ],
+ },
+ }],
+ ],
+ },
],
}
« build/common.gypi ('K') | « build/filename_rules.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698