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

Side by Side Diff: third_party/zlib/zlib.gyp

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed file added by mistake. Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'zlib', 8 'target_name': 'zlib',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 21 matching lines...) Expand all
32 'trees.h', 32 'trees.h',
33 'uncompr.c', 33 'uncompr.c',
34 'zconf.h', 34 'zconf.h',
35 'zlib.h', 35 'zlib.h',
36 'zutil.c', 36 'zutil.c',
37 'zutil.h', 37 'zutil.h',
38 ], 38 ],
39 'include_dirs': [ 39 'include_dirs': [
40 '.', 40 '.',
41 ], 41 ],
42 'defines': [
43 'HAVE_VISIBILITY_ATTRIBUTE',
44 ],
42 'direct_dependent_settings': { 45 'direct_dependent_settings': {
43 'include_dirs': [ 46 'include_dirs': [
44 '.', 47 '.',
45 ], 48 ],
46 }, 49 },
47 'conditions': [ 50 'conditions': [
48 ['OS!="win"', { 51 ['OS!="win"', {
49 'product_name': 'chrome_zlib', 52 'product_name': 'chrome_zlib',
50 }], ['OS=="android"', { 53 }], ['OS=="android"', {
51 'toolsets': ['target', 'host'], 54 'toolsets': ['target', 'host'],
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'google/zip.cc', 124 'google/zip.cc',
122 'google/zip.h', 125 'google/zip.h',
123 'google/zip_internal.cc', 126 'google/zip_internal.cc',
124 'google/zip_internal.h', 127 'google/zip_internal.h',
125 'google/zip_reader.cc', 128 'google/zip_reader.cc',
126 'google/zip_reader.h', 129 'google/zip_reader.h',
127 ], 130 ],
128 }, 131 },
129 ], 132 ],
130 } 133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698