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

Side by Side Diff: BUILD.gn

Issue 2202733002: GN: use the correct fontconfig font mugger. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: for real Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 declare_args() { 6 declare_args() {
7 } 7 }
8 8
9 skia_public_includes = [ 9 skia_public_includes = [
10 "include/android", 10 "include/android",
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "src/xps/SkDocument_XPS_None.cpp", 250 "src/xps/SkDocument_XPS_None.cpp",
251 ] 251 ]
252 } 252 }
253 253
254 if (is_linux) { 254 if (is_linux) {
255 deps += [ 255 deps += [
256 "third_party:fontconfig", 256 "third_party:fontconfig",
257 "third_party:freetype2", 257 "third_party:freetype2",
258 ] 258 ]
259 sources += [ 259 sources += [
260 "src/fonts/SkFontMgr_fontconfig.cpp",
bungeman-skia 2016/08/01 20:03:17 If this build file is designed for building and te
mtklein 2016/08/01 20:05:55 Nah, quite the opposite. For now I don't want any
261 "src/ports/SkFontConfigInterface_direct.cpp", 260 "src/ports/SkFontConfigInterface_direct.cpp",
262 "src/ports/SkFontConfigInterface_direct_factory.cpp", 261 "src/ports/SkFontConfigInterface_direct_factory.cpp",
263 "src/ports/SkFontHost_FreeType.cpp", 262 "src/ports/SkFontHost_FreeType.cpp",
264 "src/ports/SkFontHost_FreeType_common.cpp", 263 "src/ports/SkFontHost_FreeType_common.cpp",
265 "src/ports/SkFontHost_fontconfig.cpp", 264 "src/ports/SkFontMgr_fontconfig.cpp",
bungeman-skia 2016/08/01 20:03:17 This file should actually be named SkFontMgr_FCI_f
265 "src/ports/SkFontMgr_fontconfig_factory.cpp",
266 ] 266 ]
267 } 267 }
268 268
269 if (is_mac) { 269 if (is_mac) {
270 sources += [ 270 sources += [
271 "src/ports/SkFontHost_mac.cpp", 271 "src/ports/SkFontHost_mac.cpp",
272 "src/ports/SkImageEncoder_CG.cpp", 272 "src/ports/SkImageEncoder_CG.cpp",
273 "src/ports/SkImageGeneratorCG.cpp", 273 "src/ports/SkImageGeneratorCG.cpp",
274 ] 274 ]
275 libs += [ "ApplicationServices.framework" ] 275 libs += [ "ApplicationServices.framework" ]
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 ":flags", 475 ":flags",
476 ":gm", 476 ":gm",
477 ":gpu_tool_utils", 477 ":gpu_tool_utils",
478 ":skia", 478 ":skia",
479 ":tool_utils", 479 ":tool_utils",
480 "//third_party/jsoncpp", 480 "//third_party/jsoncpp",
481 ] 481 ]
482 testonly = true 482 testonly = true
483 } 483 }
484 } 484 }
OLDNEW
« 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