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

Side by Side Diff: net/net.gyp

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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': [
11 ['chromeos==1 or embedded==1 or OS=="android" or OS=="ios"', { 11 ['chromeos==1 or embedded==1 or OS=="ios"', {
12 # Disable Kerberos on ChromeOS, Android and iOS, at least for now. 12 # Disable Kerberos on ChromeOS and iOS, at least for now.
13 # It needs configuration (krb5.conf and so on). 13 # It needs configuration (krb5.conf and so on).
14 'use_kerberos%': 0, 14 'use_kerberos%': 0,
15 }, { # chromeos == 0 and embedded==0 and OS!="android" and OS!="ios" 15 }, { # chromeos == 0 and embedded==0 and OS!="ios"
16 'use_kerberos%': 1, 16 'use_kerberos%': 1,
17 }], 17 }],
18 ['OS=="android" and target_arch != "ia32"', { 18 ['OS=="android" and target_arch != "ia32"', {
19 # The way the cache uses mmap() is inefficient on some Android devices. 19 # The way the cache uses mmap() is inefficient on some Android devices.
20 # If this flag is set, we hackily avoid using mmap() in the disk cache. 20 # If this flag is set, we hackily avoid using mmap() in the disk cache.
21 # We are pretty confident that mmap-ing the index would not hurt any 21 # We are pretty confident that mmap-ing the index would not hurt any
22 # existing x86 android devices, but we cannot be so sure about the 22 # existing x86 android devices, but we cannot be so sure about the
23 # variety of ARM devices. So enable it for x86 only for now. 23 # variety of ARM devices. So enable it for x86 only for now.
24 'posix_avoid_mmap%': 1, 24 'posix_avoid_mmap%': 1,
25 }, { 25 }, {
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 }, 1333 },
1334 { 1334 {
1335 'target_name': 'net_jni_headers', 1335 'target_name': 'net_jni_headers',
1336 'type': 'none', 1336 'type': 'none',
1337 'sources': [ 1337 'sources': [
1338 'android/java/src/org/chromium/net/AndroidCertVerifyResult.java', 1338 'android/java/src/org/chromium/net/AndroidCertVerifyResult.java',
1339 'android/java/src/org/chromium/net/AndroidKeyStore.java', 1339 'android/java/src/org/chromium/net/AndroidKeyStore.java',
1340 'android/java/src/org/chromium/net/AndroidNetworkLibrary.java', 1340 'android/java/src/org/chromium/net/AndroidNetworkLibrary.java',
1341 'android/java/src/org/chromium/net/AndroidPrivateKey.java', 1341 'android/java/src/org/chromium/net/AndroidPrivateKey.java',
1342 'android/java/src/org/chromium/net/GURLUtils.java', 1342 'android/java/src/org/chromium/net/GURLUtils.java',
1343 'android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java',
1343 'android/java/src/org/chromium/net/NetStringUtil.java', 1344 'android/java/src/org/chromium/net/NetStringUtil.java',
1344 'android/java/src/org/chromium/net/NetworkChangeNotifier.java', 1345 'android/java/src/org/chromium/net/NetworkChangeNotifier.java',
1345 'android/java/src/org/chromium/net/ProxyChangeListener.java', 1346 'android/java/src/org/chromium/net/ProxyChangeListener.java',
1346 'android/java/src/org/chromium/net/X509Util.java', 1347 'android/java/src/org/chromium/net/X509Util.java',
1347 ], 1348 ],
1348 'variables': { 1349 'variables': {
1349 'jni_gen_package': 'net', 1350 'jni_gen_package': 'net',
1350 }, 1351 },
1351 'includes': [ '../build/jni_generator.gypi' ], 1352 'includes': [ '../build/jni_generator.gypi' ],
1352 }, 1353 },
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 '../build/isolate.gypi', 1541 '../build/isolate.gypi',
1541 ], 1542 ],
1542 'sources': [ 1543 'sources': [
1543 'net_unittests.isolate', 1544 'net_unittests.isolate',
1544 ], 1545 ],
1545 }, 1546 },
1546 ], 1547 ],
1547 }], 1548 }],
1548 ], 1549 ],
1549 } 1550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698