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

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

Issue 1564773002: Move components/compression to third_party/zlib/google (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix another #include... Created 4 years, 11 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 | « components/variations/variations_seed_store_unittest.cc ('k') | third_party/zlib/google/OWNERS » ('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 (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
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 }
OLDNEW
« no previous file with comments | « components/variations/variations_seed_store_unittest.cc ('k') | third_party/zlib/google/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698