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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/mime_util_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 74eb3a86705647b105e1cfd2d0b119ecf26a9f99..9f2a11f3e96e23d834b33e086af3358ef9eeba96 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -84,6 +84,7 @@
'base/cache_type.h',
'base/cert_database.cc',
'base/cert_database.h',
+ 'base/cert_database_android.cc',
'base/cert_database_ios.cc',
'base/cert_database_mac.cc',
'base/cert_database_nss.cc',
@@ -1209,6 +1210,7 @@
'net_jni_headers',
],
'sources!': [
+ 'base/cert_database_openssl.cc',
'base/openssl_memory_private_key_store.cc',
],
}, { # else OS! = "android"
@@ -2270,6 +2272,7 @@
'dependencies': [
'../base/base.gyp:base',
'net_errors_java',
+ 'certificate_mime_types_java',
],
'includes': [ '../build/java.gypi' ],
},
@@ -2307,7 +2310,19 @@
'package_name': 'org.chromium.net',
},
'includes': [ '../build/android/java_cpp_template.gypi' ],
- }
+ },
+ {
+ 'target_name': 'certificate_mime_types_java',
+ 'type': 'none',
+ 'sources': [
+ 'base/mime_util_certificate_type_list.h',
+ 'android/java/CertificateMimeType.template',
+ ],
+ 'variables': {
+ 'package_name': 'org.chromium.net',
+ },
+ 'includes': [ '../build/android/java_cpp_template.gypi' ],
+ },
],
}],
# Special target to wrap a gtest_target_type==shared_library
« 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