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

Unified Diff: skia/BUILD.gn

Issue 1366653003: [Chromecast] Replace 'fontconfig' GN target with dynamic dependency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Correct dep in //chrome/browser/chromeos Created 5 years, 3 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 | « content/shell/BUILD.gn ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/BUILD.gn
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
index 6e003776817d0ba3a8b8d79ea3a7a6cef1f1f7fb..443d72f197e7f82110020dc81457fef1a2be77de 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -462,14 +462,15 @@ component("skia") {
]
if (is_linux) {
- configs += [
- "//build/config/linux:fontconfig",
- "//build/config/linux:freetype2",
- ]
+ configs += [ "//build/config/linux:freetype2" ]
+
if (use_pango) {
configs += [ "//build/config/linux:pangocairo" ]
}
- deps += [ "//third_party/icu:icuuc" ]
+ deps += [
+ "//build/linux:fontconfig",
+ "//third_party/icu:icuuc",
+ ]
}
if (is_android) {
« no previous file with comments | « content/shell/BUILD.gn ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698