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

Side by Side Diff: net/net.gyp

Issue 266053002: Implement alternative string conversion functions in net/ on Android, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove GN changes Created 6 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 | Annotate | Revision Log
« no previous file with comments | « net/http/http_auth_handler_digest.cc ('k') | net/proxy/proxy_script_fetcher_impl.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 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 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 'cert/cert_verify_proc_openssl.cc', 434 'cert/cert_verify_proc_openssl.cc',
435 'cert/test_root_certs_openssl.cc', 435 'cert/test_root_certs_openssl.cc',
436 ], 436 ],
437 # The net/android/keystore_openssl.cc source file needs to 437 # The net/android/keystore_openssl.cc source file needs to
438 # access an OpenSSL-internal header. 438 # access an OpenSSL-internal header.
439 'include_dirs': [ 439 'include_dirs': [
440 '../third_party/openssl', 440 '../third_party/openssl',
441 ], 441 ],
442 }, 442 },
443 ], 443 ],
444 [ 'use_icu_alternatives_on_android == 1', {
445 'sources!': [
446 'base/net_string_util_icu.cc',
447 ],
448 'sources': [
449 'base/net_string_util_icu_alternatives_android.cc',
450 'base/net_string_util_icu_alternatives_android.h',
451 ],
452 },
453 ],
444 ], 454 ],
445 'target_conditions': [ 455 'target_conditions': [
446 # These source files are excluded by default platform rules, but they 456 # These source files are excluded by default platform rules, but they
447 # are needed in specific cases on other platforms. Re-including them can 457 # are needed in specific cases on other platforms. Re-including them can
448 # only be done in target_conditions as it is evaluated after the 458 # only be done in target_conditions as it is evaluated after the
449 # platform rules. 459 # platform rules.
450 ['OS == "android"', { 460 ['OS == "android"', {
451 'sources/': [ 461 'sources/': [
452 ['include', '^base/platform_mime_util_linux\\.cc$'], 462 ['include', '^base/platform_mime_util_linux\\.cc$'],
453 ['include', '^base/address_tracker_linux\\.cc$'], 463 ['include', '^base/address_tracker_linux\\.cc$'],
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
1426 'android/java/src/org/chromium/net/GURLUtils.java', 1436 'android/java/src/org/chromium/net/GURLUtils.java',
1427 'android/java/src/org/chromium/net/NetworkChangeNotifier.java', 1437 'android/java/src/org/chromium/net/NetworkChangeNotifier.java',
1428 'android/java/src/org/chromium/net/ProxyChangeListener.java', 1438 'android/java/src/org/chromium/net/ProxyChangeListener.java',
1429 'android/java/src/org/chromium/net/X509Util.java', 1439 'android/java/src/org/chromium/net/X509Util.java',
1430 ], 1440 ],
1431 'variables': { 1441 'variables': {
1432 'jni_gen_package': 'net', 1442 'jni_gen_package': 'net',
1433 'jni_generator_ptr_type': 'long', 1443 'jni_generator_ptr_type': 'long',
1434 }, 1444 },
1435 'includes': [ '../build/jni_generator.gypi' ], 1445 'includes': [ '../build/jni_generator.gypi' ],
1446
1447 'conditions': [
1448 ['use_icu_alternatives_on_android==1', {
1449 'sources': [
1450 'android/java/src/org/chromium/net/NetStringUtil.java',
1451 ],
1452 }],
1453 ],
1436 }, 1454 },
1437 { 1455 {
1438 'target_name': 'net_test_jni_headers', 1456 'target_name': 'net_test_jni_headers',
1439 'type': 'none', 1457 'type': 'none',
1440 'sources': [ 1458 'sources': [
1441 'android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java ', 1459 'android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java ',
1442 ], 1460 ],
1443 'variables': { 1461 'variables': {
1444 'jni_gen_package': 'net', 1462 'jni_gen_package': 'net',
1445 'jni_generator_ptr_type': 'long', 1463 'jni_generator_ptr_type': 'long',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1595 'net_unittests.isolate', 1613 'net_unittests.isolate',
1596 ], 1614 ],
1597 'sources': [ 1615 'sources': [
1598 'net_unittests.isolate', 1616 'net_unittests.isolate',
1599 ], 1617 ],
1600 }, 1618 },
1601 ], 1619 ],
1602 }], 1620 }],
1603 ], 1621 ],
1604 } 1622 }
OLDNEW
« no previous file with comments | « net/http/http_auth_handler_digest.cc ('k') | net/proxy/proxy_script_fetcher_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698