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

Side by Side Diff: net/net.gyp

Issue 11266008: Fix certificate and keychain installation on Android. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: separate android and openssl CertDatabase implementations Created 8 years 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
« no previous file with comments | « net/base/mime_util_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'base/auth.h', 77 'base/auth.h',
78 'base/backoff_entry.cc', 78 'base/backoff_entry.cc',
79 'base/backoff_entry.h', 79 'base/backoff_entry.h',
80 'base/bandwidth_metrics.cc', 80 'base/bandwidth_metrics.cc',
81 'base/bandwidth_metrics.h', 81 'base/bandwidth_metrics.h',
82 'base/big_endian.cc', 82 'base/big_endian.cc',
83 'base/big_endian.h', 83 'base/big_endian.h',
84 'base/cache_type.h', 84 'base/cache_type.h',
85 'base/cert_database.cc', 85 'base/cert_database.cc',
86 'base/cert_database.h', 86 'base/cert_database.h',
87 'base/cert_database_android.cc',
87 'base/cert_database_ios.cc', 88 'base/cert_database_ios.cc',
88 'base/cert_database_mac.cc', 89 'base/cert_database_mac.cc',
89 'base/cert_database_nss.cc', 90 'base/cert_database_nss.cc',
90 'base/cert_database_openssl.cc', 91 'base/cert_database_openssl.cc',
91 'base/cert_database_win.cc', 92 'base/cert_database_win.cc',
92 'base/cert_status_flags.cc', 93 'base/cert_status_flags.cc',
93 'base/cert_status_flags.h', 94 'base/cert_status_flags.h',
94 'base/cert_verifier.cc', 95 'base/cert_verifier.cc',
95 'base/cert_verifier.h', 96 'base/cert_verifier.h',
96 'base/cert_verify_proc.cc', 97 'base/cert_verify_proc.cc',
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 'dependencies': [ 1203 'dependencies': [
1203 'net_java', 1204 'net_java',
1204 ], 1205 ],
1205 }], 1206 }],
1206 [ 'OS == "android"', { 1207 [ 'OS == "android"', {
1207 'dependencies': [ 1208 'dependencies': [
1208 '../third_party/openssl/openssl.gyp:openssl', 1209 '../third_party/openssl/openssl.gyp:openssl',
1209 'net_jni_headers', 1210 'net_jni_headers',
1210 ], 1211 ],
1211 'sources!': [ 1212 'sources!': [
1213 'base/cert_database_openssl.cc',
1212 'base/openssl_memory_private_key_store.cc', 1214 'base/openssl_memory_private_key_store.cc',
1213 ], 1215 ],
1214 }, { # else OS! = "android" 1216 }, { # else OS! = "android"
1215 'defines': [ 1217 'defines': [
1216 # These are the features Android doesn't support. 1218 # These are the features Android doesn't support.
1217 'ENABLE_MEDIA_CODEC_THEORA', 1219 'ENABLE_MEDIA_CODEC_THEORA',
1218 ], 1220 ],
1219 }, 1221 },
1220 ], 1222 ],
1221 [ 'OS == "linux"', { 1223 [ 'OS == "linux"', {
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
2263 { 2265 {
2264 'target_name': 'net_java', 2266 'target_name': 'net_java',
2265 'type': 'none', 2267 'type': 'none',
2266 'variables': { 2268 'variables': {
2267 'package_name': 'net', 2269 'package_name': 'net',
2268 'java_in_dir': '../net/android/java', 2270 'java_in_dir': '../net/android/java',
2269 }, 2271 },
2270 'dependencies': [ 2272 'dependencies': [
2271 '../base/base.gyp:base', 2273 '../base/base.gyp:base',
2272 'net_errors_java', 2274 'net_errors_java',
2275 'certificate_mime_types_java',
2273 ], 2276 ],
2274 'includes': [ '../build/java.gypi' ], 2277 'includes': [ '../build/java.gypi' ],
2275 }, 2278 },
2276 { 2279 {
2277 'target_name': 'net_java_test_support', 2280 'target_name': 'net_java_test_support',
2278 'type': 'none', 2281 'type': 'none',
2279 'variables': { 2282 'variables': {
2280 'package_name': 'net_java_test_support', 2283 'package_name': 'net_java_test_support',
2281 'java_in_dir': '../net/test/android/javatests', 2284 'java_in_dir': '../net/test/android/javatests',
2282 }, 2285 },
(...skipping 17 matching lines...) Expand all
2300 'target_name': 'net_errors_java', 2303 'target_name': 'net_errors_java',
2301 'type': 'none', 2304 'type': 'none',
2302 'sources': [ 2305 'sources': [
2303 'base/net_error_list.h', 2306 'base/net_error_list.h',
2304 'android/java/NetError.template', 2307 'android/java/NetError.template',
2305 ], 2308 ],
2306 'variables': { 2309 'variables': {
2307 'package_name': 'org.chromium.net', 2310 'package_name': 'org.chromium.net',
2308 }, 2311 },
2309 'includes': [ '../build/android/java_cpp_template.gypi' ], 2312 'includes': [ '../build/android/java_cpp_template.gypi' ],
2310 } 2313 },
2314 {
2315 'target_name': 'certificate_mime_types_java',
2316 'type': 'none',
2317 'sources': [
2318 'base/mime_util_certificate_type_list.h',
2319 'android/java/CertificateMimeType.template',
2320 ],
2321 'variables': {
2322 'package_name': 'org.chromium.net',
2323 },
2324 'includes': [ '../build/android/java_cpp_template.gypi' ],
2325 },
2311 ], 2326 ],
2312 }], 2327 }],
2313 # Special target to wrap a gtest_target_type==shared_library 2328 # Special target to wrap a gtest_target_type==shared_library
2314 # net_unittests into an android apk for execution. 2329 # net_unittests into an android apk for execution.
2315 # See base.gyp for TODO(jrg)s about this strategy. 2330 # See base.gyp for TODO(jrg)s about this strategy.
2316 ['OS == "android" and gtest_target_type == "shared_library"', { 2331 ['OS == "android" and gtest_target_type == "shared_library"', {
2317 'targets': [ 2332 'targets': [
2318 { 2333 {
2319 'target_name': 'net_unittests_apk', 2334 'target_name': 'net_unittests_apk',
2320 'type': 'none', 2335 'type': 'none',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
2361 '--result', '<@(_outputs)', 2376 '--result', '<@(_outputs)',
2362 '--isolate', 'net_unittests.isolate', 2377 '--isolate', 'net_unittests.isolate',
2363 ], 2378 ],
2364 }, 2379 },
2365 ], 2380 ],
2366 }, 2381 },
2367 ], 2382 ],
2368 }], 2383 }],
2369 ], 2384 ],
2370 } 2385 }
OLDNEW
« no previous file with comments | « net/base/mime_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698