| 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") { | 9 static_library("zlib") { |
| 10 if (!is_win) { | 10 if (!is_win) { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "google/zip_internal.h", | 93 "google/zip_internal.h", |
| 94 "google/zip_reader.cc", | 94 "google/zip_reader.cc", |
| 95 "google/zip_reader.h", | 95 "google/zip_reader.h", |
| 96 ] | 96 ] |
| 97 deps = [ | 97 deps = [ |
| 98 ":minizip", | 98 ":minizip", |
| 99 "//base", | 99 "//base", |
| 100 ] | 100 ] |
| 101 } | 101 } |
| 102 } | 102 } |
| OLD | NEW |