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

Side by Side Diff: net/net.gypi

Issue 933293003: [Cronet] Make Cronet buildable on regular Android bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Matt's comments. Created 5 years, 9 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 27 matching lines...) Expand all
38 'base/net_errors.h', 38 'base/net_errors.h',
39 'base/net_errors_posix.cc', 39 'base/net_errors_posix.cc',
40 'base/net_export.h', 40 'base/net_export.h',
41 'base/net_log.cc', 41 'base/net_log.cc',
42 'base/net_log.h', 42 'base/net_log.h',
43 'base/net_log_event_type_list.h', 43 'base/net_log_event_type_list.h',
44 'base/net_log_source_type_list.h', 44 'base/net_log_source_type_list.h',
45 'base/net_module.cc', 45 'base/net_module.cc',
46 'base/net_module.h', 46 'base/net_module.h',
47 'base/net_string_util.h', 47 'base/net_string_util.h',
48 'base/net_string_util_icu.cc',
49 'base/net_util.cc', 48 'base/net_util.cc',
50 'base/net_util.h', 49 'base/net_util.h',
51 'base/net_util_icu.cc',
52 'base/net_util_posix.cc', 50 'base/net_util_posix.cc',
53 'base/openssl_private_key_store.h', 51 'base/openssl_private_key_store.h',
54 'base/openssl_private_key_store_android.cc', 52 'base/openssl_private_key_store_android.cc',
55 'base/openssl_private_key_store_memory.cc', 53 'base/openssl_private_key_store_memory.cc',
56 'base/rand_callback.h', 54 'base/rand_callback.h',
57 'base/registry_controlled_domains/registry_controlled_domain.cc', 55 'base/registry_controlled_domains/registry_controlled_domain.cc',
58 'base/registry_controlled_domains/registry_controlled_domain.h', 56 'base/registry_controlled_domains/registry_controlled_domain.h',
59 'base/sys_addrinfo.h', 57 'base/sys_addrinfo.h',
60 'base/zap.cc', 58 'base/zap.cc',
61 'base/zap.h', 59 'base/zap.h',
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 'base/elements_upload_data_stream.h', 207 'base/elements_upload_data_stream.h',
210 'base/expiring_cache.h', 208 'base/expiring_cache.h',
211 'base/file_stream.cc', 209 'base/file_stream.cc',
212 'base/file_stream.h', 210 'base/file_stream.h',
213 'base/file_stream_context.cc', 211 'base/file_stream_context.cc',
214 'base/file_stream_context.h', 212 'base/file_stream_context.h',
215 'base/file_stream_context_posix.cc', 213 'base/file_stream_context_posix.cc',
216 'base/file_stream_context_win.cc', 214 'base/file_stream_context_win.cc',
217 'base/filename_util.cc', 215 'base/filename_util.cc',
218 'base/filename_util.h', 216 'base/filename_util.h',
219 'base/filename_util_icu.cc',
220 'base/filename_util_internal.cc', 217 'base/filename_util_internal.cc',
221 'base/filename_util_internal.h', 218 'base/filename_util_internal.h',
222 'base/filename_util_unsafe.cc', 219 'base/filename_util_unsafe.cc',
223 'base/filename_util_unsafe.h', 220 'base/filename_util_unsafe.h',
224 'base/host_mapping_rules.cc', 221 'base/host_mapping_rules.cc',
225 'base/host_mapping_rules.h', 222 'base/host_mapping_rules.h',
226 'base/int128.cc', 223 'base/int128.cc',
227 'base/int128.h', 224 'base/int128.h',
228 'base/iovec.h', 225 'base/iovec.h',
229 'base/ip_pattern.cc', 226 'base/ip_pattern.cc',
(...skipping 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 'base/mac/url_conversions_unittest.mm', 1770 'base/mac/url_conversions_unittest.mm',
1774 ], 1771 ],
1775 'net_docs_script': 'tools/net_docs/net_docs.py', 1772 'net_docs_script': 'tools/net_docs/net_docs.py',
1776 'net_docs_sources': [ 1773 'net_docs_sources': [
1777 'README.md', 1774 'README.md',
1778 'sdch/README.md', 1775 'sdch/README.md',
1779 ], 1776 ],
1780 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1777 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1781 } 1778 }
1782 } 1779 }
OLDNEW
« components/cronet.gypi ('K') | « net/net.gyp ('k') | net/net_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698