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

Side by Side Diff: components/cronet.gypi

Issue 250683002: Refactor cronet library loader. Move java LibraryLoader into cronet.jar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | components/cronet/android/cronet_jni.cc » ('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 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 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="android"', { 7 ['OS=="android"', {
8 # TODO(mef): Consider moving all Cronet Android targets into separate 8 # TODO(mef): Consider moving all Cronet Android targets into separate
9 # file. Also figure out what needs to be done for gn script. 9 # file. Also figure out what needs to be done for gn script.
10 'targets': [ 10 'targets': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 '../base/base.gyp:base_i18n', 53 '../base/base.gyp:base_i18n',
54 '../third_party/icu/icu.gyp:icui18n', 54 '../third_party/icu/icu.gyp:icui18n',
55 '../third_party/icu/icu.gyp:icuuc', 55 '../third_party/icu/icu.gyp:icuuc',
56 '../url/url.gyp:url_lib', 56 '../url/url.gyp:url_lib',
57 'cronet_jni_headers', 57 'cronet_jni_headers',
58 'cronet_url_request_error_list', 58 'cronet_url_request_error_list',
59 'cronet_url_request_priority_list', 59 'cronet_url_request_priority_list',
60 '../net/net.gyp:net', 60 '../net/net.gyp:net',
61 ], 61 ],
62 'sources': [ 62 'sources': [
63 'cronet/android/cronet_jni.cc',
63 'cronet/android/org_chromium_net_UrlRequest.cc', 64 'cronet/android/org_chromium_net_UrlRequest.cc',
64 'cronet/android/org_chromium_net_UrlRequest.h', 65 'cronet/android/org_chromium_net_UrlRequest.h',
65 'cronet/android/org_chromium_net_UrlRequest_error_list.h', 66 'cronet/android/org_chromium_net_UrlRequest_error_list.h',
66 'cronet/android/org_chromium_net_UrlRequest_priority_list.h', 67 'cronet/android/org_chromium_net_UrlRequest_priority_list.h',
67 'cronet/android/org_chromium_net_UrlRequestContext.cc', 68 'cronet/android/org_chromium_net_UrlRequestContext.cc',
69 'cronet/android/org_chromium_net_UrlRequestContext.h',
68 'cronet/android/url_request_context_peer.cc', 70 'cronet/android/url_request_context_peer.cc',
69 'cronet/android/url_request_context_peer.h', 71 'cronet/android/url_request_context_peer.h',
70 'cronet/android/url_request_peer.cc', 72 'cronet/android/url_request_peer.cc',
71 'cronet/android/url_request_peer.h', 73 'cronet/android/url_request_peer.h',
72 ], 74 ],
73 'cflags': [ 75 'cflags': [
74 # TODO(mef): Figure out a good way to get version from chrome_versio n_info_posix.h. 76 # TODO(mef): Figure out a good way to get version from chrome_versio n_info_posix.h.
75 '-DCHROMIUM_VERSION=\\"TBD\\"', 77 '-DCHROMIUM_VERSION=\\"TBD\\"',
76 '-DLOGGING=1', 78 '-DLOGGING=1',
77 '-fdata-sections', 79 '-fdata-sections',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'java_in_dir': 'cronet/android/sample/javatests', 184 'java_in_dir': 'cronet/android/sample/javatests',
183 'resource_dir': 'cronet/android/sample/res', 185 'resource_dir': 'cronet/android/sample/res',
184 'is_test_apk': 1, 186 'is_test_apk': 1,
185 }, 187 },
186 'includes': [ '../build/java_apk.gypi' ], 188 'includes': [ '../build/java_apk.gypi' ],
187 }, 189 },
188 ], 190 ],
189 }], # OS=="android" 191 }], # OS=="android"
190 ], 192 ],
191 } 193 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/android/cronet_jni.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698