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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 "google/zip_internal.cc", | 142 "google/zip_internal.cc", |
143 "google/zip_internal.h", | 143 "google/zip_internal.h", |
144 "google/zip_reader.cc", | 144 "google/zip_reader.cc", |
145 "google/zip_reader.h", | 145 "google/zip_reader.h", |
146 ] | 146 ] |
147 deps = [ | 147 deps = [ |
148 ":minizip", | 148 ":minizip", |
149 "//base", | 149 "//base", |
150 ] | 150 ] |
151 } | 151 } |
| 152 |
| 153 static_library("compression_utils") { |
| 154 sources = [ |
| 155 "google/compression_utils.cc", |
| 156 "google/compression_utils.h", |
| 157 ] |
| 158 deps = [ |
| 159 ":zlib", |
| 160 ] |
| 161 } |
OLD | NEW |