| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 assert(is_android, "This library is only used on Android") | 5 assert(is_android, "This library is only used on Android") |
| 6 | 6 |
| 7 config("freetype_config") { | 7 config("freetype_config") { |
| 8 include_dirs = [ "include" ] | 8 include_dirs = [ "include" ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 defines = [ | 37 defines = [ |
| 38 "FT2_BUILD_LIBRARY", | 38 "FT2_BUILD_LIBRARY", |
| 39 "DARWIN_NO_CARBON", | 39 "DARWIN_NO_CARBON", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 include_dirs = [ | 42 include_dirs = [ |
| 43 "build", | 43 "build", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 direct_dependent_configs = [ ":freetype_config" ] | 46 public_configs = [ ":freetype_config" ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 "//third_party/libpng", | 49 "//third_party/libpng", |
| 50 "//third_party/zlib", | 50 "//third_party/zlib", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| OLD | NEW |