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

Unified Diff: content/content_common.gypi

Issue 14181002: Use pangocairo for all Linux builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: introduce use_pango Created 7 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') | « content/content_browser.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_common.gypi
diff --git a/content/content_common.gypi b/content/content_common.gypi
index 4bbba88a135554141b843b9a077a1f73fb94eec6..8d0968845dd443bd7c9792d9f6ff0d4a7d00a3aa 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -195,8 +195,8 @@
'common/font_list.cc',
'common/font_list.h',
'common/font_list_android.cc',
- 'common/font_list_linux.cc',
'common/font_list_mac.mm',
+ 'common/font_list_pango.cc',
'common/font_list_win.cc',
'common/gamepad_hardware_buffer.h',
'common/gamepad_messages.h',
@@ -453,9 +453,6 @@
],
}],
['use_x11 == 1', {
- 'dependencies': [
- '../build/linux/system.gyp:pangocairo',
- ],
'include_dirs': [
'<(DEPTH)/third_party/angle/include',
],
@@ -465,6 +462,15 @@
],
},
}],
+ ['use_pango == 1', {
+ 'dependencies': [
+ '../build/linux/system.gyp:pangocairo',
+ ],
+ }, { # use_pango == 0
+ 'sources!': [
+ 'common/font_list_pango.cc',
+ ],
+ }],
['use_x11 == 1 and (target_arch != "arm" or chromeos == 0)', {
'sources': [
'common/gpu/x_util.cc',
« build/common.gypi ('K') | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698