| 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 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |