Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |