7d10b9f6e6
- Make fiddle build on Mac (skipping GL). - Now that we're building in SkCodec, we depend on libpng and libjpeg-turbo unconditionally, not just on Linux. - Re-arrange third_party a bit so that our targets are Fuchsia/Chrome compatible. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2184133002 NOTREECHECKS=true This doesn't affect Chrome/Blink, so landing through the closed tree. Review-Url: https://codereview.chromium.org/2184133002
23 lines
448 B
Plaintext
23 lines
448 B
Plaintext
# Copyright 2016 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
declare_args() {
|
|
}
|
|
|
|
config("system_freetype2") {
|
|
include_dirs = [ "/usr/include/freetype2" ]
|
|
libs = [ "freetype" ]
|
|
}
|
|
group("freetype2") {
|
|
public_configs = [ ":system_freetype2" ]
|
|
}
|
|
|
|
config("system_fontconfig") {
|
|
libs = [ "fontconfig" ]
|
|
}
|
|
group("fontconfig") {
|
|
public_configs = [ ":system_fontconfig" ]
|
|
}
|