blob: 49d9f568c47491c99277b5fa78a1ab74459dafc7 [file] [log] [blame]
mtkleinc04ff472016-06-23 10:29:30 -07001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
mtkleinf037d482016-07-19 08:25:00 -07006declare_args() {
mtkleinc04ff472016-06-23 10:29:30 -07007}
mtkleinf037d482016-07-19 08:25:00 -07008
mtkleinc04ff472016-06-23 10:29:30 -07009config("system_freetype2") {
10 include_dirs = [ "/usr/include/freetype2" ]
11 libs = [ "freetype" ]
12}
13group("freetype2") {
14 public_configs = [ ":system_freetype2" ]
15}
16
17config("system_fontconfig") {
18 libs = [ "fontconfig" ]
19}
20group("fontconfig") {
21 public_configs = [ ":system_fontconfig" ]
22}