| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 config("zlib_config") { | 5 config("zlib_config") { |
| 6 include_dirs = [ "." ] | 6 include_dirs = [ "." ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("zlib_x86_simd") { | 9 static_library("zlib_x86_simd") { |
| 10 if (!is_ios && (current_cpu == "x86" || current_cpu == "x64")) { | 10 if (!is_ios && (current_cpu == "x86" || current_cpu == "x64")) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "gzread.c", | 53 "gzread.c", |
| 54 "gzwrite.c", | 54 "gzwrite.c", |
| 55 "infback.c", | 55 "infback.c", |
| 56 "inffast.c", | 56 "inffast.c", |
| 57 "inffast.h", | 57 "inffast.h", |
| 58 "inffixed.h", | 58 "inffixed.h", |
| 59 "inflate.c", | 59 "inflate.c", |
| 60 "inflate.h", | 60 "inflate.h", |
| 61 "inftrees.c", | 61 "inftrees.c", |
| 62 "inftrees.h", | 62 "inftrees.h", |
| 63 "mozzconf.h", | 63 "names.h", |
| 64 "trees.c", | 64 "trees.c", |
| 65 "trees.h", | 65 "trees.h", |
| 66 "uncompr.c", | 66 "uncompr.c", |
| 67 "x86.h", | 67 "x86.h", |
| 68 "zconf.h", | 68 "zconf.h", |
| 69 "zlib.h", | 69 "zlib.h", |
| 70 "zutil.c", | 70 "zutil.c", |
| 71 "zutil.h", | 71 "zutil.h", |
| 72 ] | 72 ] |
| 73 | 73 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 static_library("compression_utils") { | 153 static_library("compression_utils") { |
| 154 sources = [ | 154 sources = [ |
| 155 "google/compression_utils.cc", | 155 "google/compression_utils.cc", |
| 156 "google/compression_utils.h", | 156 "google/compression_utils.h", |
| 157 ] | 157 ] |
| 158 deps = [ | 158 deps = [ |
| 159 ":zlib", | 159 ":zlib", |
| 160 ] | 160 ] |
| 161 } | 161 } |
| OLD | NEW |