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

Side by Side Diff: third_party/zlib/BUILD.gn

Issue 2188643002: GN: dm (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp deps Created 4 years, 4 months 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
« no previous file with comments | « third_party/third_party.gni ('k') | tools/ProcStats.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("../third_party.gni") 9 import("../third_party.gni")
10 10
11 config("zlib_public") {
12 include_dirs = [ "../externals/zlib" ]
13 }
14 third_party("zlib") { 11 third_party("zlib") {
15 public_configs = [ ":zlib_public" ] 12 public_include_dirs = [ "../externals/zlib" ]
16 13
17 sources = [ 14 sources = [
18 "../externals/zlib/adler32.c", 15 "../externals/zlib/adler32.c",
19 "../externals/zlib/compress.c", 16 "../externals/zlib/compress.c",
20 "../externals/zlib/crc32.c", 17 "../externals/zlib/crc32.c",
21 "../externals/zlib/deflate.c", 18 "../externals/zlib/deflate.c",
22 "../externals/zlib/gzclose.c", 19 "../externals/zlib/gzclose.c",
23 "../externals/zlib/gzlib.c", 20 "../externals/zlib/gzlib.c",
24 "../externals/zlib/gzread.c", 21 "../externals/zlib/gzread.c",
25 "../externals/zlib/gzwrite.c", 22 "../externals/zlib/gzwrite.c",
26 "../externals/zlib/infback.c", 23 "../externals/zlib/infback.c",
27 "../externals/zlib/inffast.c", 24 "../externals/zlib/inffast.c",
28 "../externals/zlib/inflate.c", 25 "../externals/zlib/inflate.c",
29 "../externals/zlib/inftrees.c", 26 "../externals/zlib/inftrees.c",
30 "../externals/zlib/simd_stub.c", 27 "../externals/zlib/simd_stub.c",
31 "../externals/zlib/trees.c", 28 "../externals/zlib/trees.c",
32 "../externals/zlib/uncompr.c", 29 "../externals/zlib/uncompr.c",
33 "../externals/zlib/zutil.c", 30 "../externals/zlib/zutil.c",
34 ] 31 ]
35 } 32 }
OLDNEW
« no previous file with comments | « third_party/third_party.gni ('k') | tools/ProcStats.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698