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

Side by Side Diff: components/cronet/cronet_static.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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 # This target is included into both 'cronet_static' and 'cronet_static_small'.
7 'type': 'static_library',
8 'defines': [
9 'USE_ICU_ALTERNATIVES_ON_ANDROID=1',
10 'DISABLE_FILE_SUPPORT=1',
11 'DISABLE_FTP_SUPPORT=1',
12 ],
mmenke 2015/03/03 18:03:47 These should be removed (They're wrong for cronet_
mef 2015/03/10 16:50:39 Done.
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations',
16 'cronet_jni_headers',
17 'cronet_url_request_context_config_list',
18 'cronet_url_request_java',
19 'cronet_version',
20 'metrics',
21 '../net/net.gyp:net',
22 ],
23 'sources': [
24 'android/chromium_url_request.cc',
25 'android/chromium_url_request.h',
26 'android/chromium_url_request_context.cc',
27 'android/chromium_url_request_context.h',
28 'android/chromium_url_request_error_list.h',
29 'android/chromium_url_request_priority_list.h',
30 'android/cronet_histogram_manager.cc',
31 'android/cronet_histogram_manager.h',
32 'android/cronet_library_loader.cc',
33 'android/cronet_library_loader.h',
34 'android/cronet_upload_data_stream_adapter.cc',
35 'android/cronet_upload_data_stream_adapter.h',
36 'android/cronet_upload_data_stream_delegate.cc',
37 'android/cronet_upload_data_stream_delegate.h',
38 'android/cronet_url_request.cc',
39 'android/cronet_url_request.h',
40 'android/cronet_url_request_adapter.cc',
41 'android/cronet_url_request_adapter.h',
42 'android/cronet_url_request_context_adapter.cc',
43 'android/cronet_url_request_context_adapter.h',
44 'android/url_request_adapter.cc',
45 'android/url_request_adapter.h',
46 'android/url_request_context_adapter.cc',
47 'android/url_request_context_adapter.h',
48 'android/wrapped_channel_upload_element_reader.cc',
49 'android/wrapped_channel_upload_element_reader.h',
50 'url_request_context_config.cc',
51 'url_request_context_config.h',
52 'url_request_context_config_list.h',
53 ],
54 'cflags': [
55 '-DLOGGING=1',
56 '-fdata-sections',
57 '-ffunction-sections',
58 '-fno-rtti',
59 '-fvisibility=hidden',
60 '-fvisibility-inlines-hidden',
61 '-Wno-sign-promo',
62 '-Wno-missing-field-initializers',
63 ],
64 'ldflags': [
65 '-llog',
66 '-landroid',
67 '-Wl,--gc-sections',
68 '-Wl,--exclude-libs,ALL'
69 ],
70 }
OLDNEW
« components/cronet.gypi ('K') | « components/cronet.gypi ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698