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

Side by Side Diff: build/config/linux/BUILD.gn

Issue 1627533002: [Chromecast] Depend on Chromium's freetype-android (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Add clarification of using freetype-android Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sysroot.gni") 7 import("//build/config/sysroot.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 9
10 # This is included by reference in the //build/config/compiler config that 10 # This is included by reference in the //build/config/compiler config that
(...skipping 16 matching lines...) Expand all
27 } 27 }
28 } 28 }
29 29
30 config("fontconfig") { 30 config("fontconfig") {
31 visibility = [ "//build/linux:fontconfig" ] 31 visibility = [ "//build/linux:fontconfig" ]
32 32
33 libs = [ "fontconfig" ] 33 libs = [ "fontconfig" ]
34 } 34 }
35 35
36 pkg_config("freetype2") { 36 pkg_config("freetype2") {
37 visibility = [ "//build/linux:freetype2" ]
38
37 packages = [ "freetype2" ] 39 packages = [ "freetype2" ]
38 } 40 }
39 41
40 pkg_config("glib") { 42 pkg_config("glib") {
41 packages = [ 43 packages = [
42 "glib-2.0", 44 "glib-2.0",
43 "gmodule-2.0", 45 "gmodule-2.0",
44 "gobject-2.0", 46 "gobject-2.0",
45 "gthread-2.0", 47 "gthread-2.0",
46 ] 48 ]
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 "-Wno-unused-function", 147 "-Wno-unused-function",
146 ] 148 ]
147 } 149 }
148 150
149 pkg_config("gconf") { 151 pkg_config("gconf") {
150 packages = [ "gconf-2.0" ] 152 packages = [ "gconf-2.0" ]
151 defines = [ "USE_GCONF" ] 153 defines = [ "USE_GCONF" ]
152 } 154 }
153 } 155 }
154 } 156 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/linux/BUILD.gn » ('j') | content/shell/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698