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

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

Issue 2778153002: Add missing header files to GN files (Closed)
Patch Set: fix merge Created 3 years, 8 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/libaddressinput/BUILD.gn ('k') | third_party/libxml/BUILD.gn » ('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 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 import("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 7
8 config("libpng_config") { 8 config("libpng_config") {
9 include_dirs = [ "." ] 9 include_dirs = [ "." ]
10 10
(...skipping 21 matching lines...) Expand all
32 ] 32 ]
33 } 33 }
34 } 34 }
35 35
36 # Cannot be a static_library in component builds 36 # Cannot be a static_library in component builds
37 source_set("libpng_sources") { 37 source_set("libpng_sources") {
38 sources = [ 38 sources = [
39 "png.c", 39 "png.c",
40 "png.h", 40 "png.h",
41 "pngconf.h", 41 "pngconf.h",
42 "pngdebug.h",
42 "pngerror.c", 43 "pngerror.c",
43 "pngget.c", 44 "pngget.c",
44 "pnginfo.h", 45 "pnginfo.h",
45 "pnglibconf.h", 46 "pnglibconf.h",
46 "pngmem.c", 47 "pngmem.c",
47 "pngpread.c", 48 "pngpread.c",
48 "pngprefix.h", 49 "pngprefix.h",
49 "pngpriv.h", 50 "pngpriv.h",
50 "pngread.c", 51 "pngread.c",
51 "pngrio.c", 52 "pngrio.c",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 ":libpng_sources", 108 ":libpng_sources",
108 ] 109 ]
109 } 110 }
110 } else { 111 } else {
111 group("libpng") { 112 group("libpng") {
112 public_deps = [ 113 public_deps = [
113 ":libpng_sources", 114 ":libpng_sources",
114 ] 115 ]
115 } 116 }
116 } 117 }
OLDNEW
« no previous file with comments | « third_party/libaddressinput/BUILD.gn ('k') | third_party/libxml/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698