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

Side by Side Diff: build/secondary/third_party/freetype/BUILD.gn

Issue 766573003: gn format //build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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
OLDNEW
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 21 matching lines...) Expand all
32 "src/cff/cff.c", 32 "src/cff/cff.c",
33 "src/psnames/psnames.c", 33 "src/psnames/psnames.c",
34 "src/pshinter/pshinter.c", 34 "src/pshinter/pshinter.c",
35 ] 35 ]
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 = [ "build" ]
43 "build",
44 ]
45 43
46 public_configs = [ ":freetype_config" ] 44 public_configs = [ ":freetype_config" ]
47 45
48 deps = [ 46 deps = [
49 "//third_party/libpng", 47 "//third_party/libpng",
50 "//third_party/zlib", 48 "//third_party/zlib",
51 ] 49 ]
52 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698