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

Side by Side Diff: net/net.gyp

Issue 723343002: Update from https://crrev.com/304121 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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/http/url_security_manager_win.cc ('k') | net/net.gypi » ('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 'conditions': [ 10 'conditions': [
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 'cert/cert_verify_proc_nss.cc', 369 'cert/cert_verify_proc_nss.cc',
370 'cert/cert_verify_proc_nss.h', 370 'cert/cert_verify_proc_nss.h',
371 'ssl/client_cert_store_nss.cc', 371 'ssl/client_cert_store_nss.cc',
372 'ssl/client_cert_store_nss.h', 372 'ssl/client_cert_store_nss.h',
373 'ssl/client_cert_store_chromeos.cc', 373 'ssl/client_cert_store_chromeos.cc',
374 'ssl/client_cert_store_chromeos.h', 374 'ssl/client_cert_store_chromeos.h',
375 ], 375 ],
376 }], 376 }],
377 [ 'enable_websockets != 1', { 377 [ 'enable_websockets != 1', {
378 'sources/': [ 378 'sources/': [
379 ['exclude', '^socket_stream/'],
380 ['exclude', '^websockets/'], 379 ['exclude', '^websockets/'],
381 ], 380 ],
382 'sources!': [
383 'spdy/spdy_websocket_stream.cc',
384 'spdy/spdy_websocket_stream.h',
385 ],
386 }], 381 }],
387 [ 'enable_mdns != 1', { 382 [ 'enable_mdns != 1', {
388 'sources!' : [ 383 'sources!' : [
389 'dns/mdns_cache.cc', 384 'dns/mdns_cache.cc',
390 'dns/mdns_cache.h', 385 'dns/mdns_cache.h',
391 'dns/mdns_client.cc', 386 'dns/mdns_client.cc',
392 'dns/mdns_client.h', 387 'dns/mdns_client.h',
393 'dns/mdns_client_impl.cc', 388 'dns/mdns_client_impl.cc',
394 'dns/mdns_client_impl.h', 389 'dns/mdns_client_impl.h',
395 'dns/record_parsed.cc', 390 'dns/record_parsed.cc',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 ], 642 ],
648 }, 643 },
649 ], 644 ],
650 [ 'use_openssl_certs == 0', { 645 [ 'use_openssl_certs == 0', {
651 'sources!': [ 646 'sources!': [
652 'ssl/openssl_client_key_store_unittest.cc', 647 'ssl/openssl_client_key_store_unittest.cc',
653 ], 648 ],
654 }], 649 }],
655 [ 'enable_websockets != 1', { 650 [ 'enable_websockets != 1', {
656 'sources/': [ 651 'sources/': [
657 ['exclude', '^socket_stream/'],
658 ['exclude', '^websockets/'], 652 ['exclude', '^websockets/'],
659 ['exclude', '^spdy/spdy_websocket_stream_unittest\\.cc$'],
660 ], 653 ],
661 }], 654 }],
662 ['disable_file_support==1', { 655 ['disable_file_support==1', {
663 'sources!': [ 656 'sources!': [
664 'base/directory_lister_unittest.cc', 657 'base/directory_lister_unittest.cc',
665 'url_request/url_request_file_job_unittest.cc', 658 'url_request/url_request_file_job_unittest.cc',
666 ], 659 ],
667 }], 660 }],
668 [ 'disable_ftp_support==1', { 661 [ 'disable_ftp_support==1', {
669 'sources/': [ 662 'sources/': [
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
1647 'includes': [ '../build/android/java_cpp_enum.gypi' ], 1640 'includes': [ '../build/android/java_cpp_enum.gypi' ],
1648 }, 1641 },
1649 { 1642 {
1650 'target_name': 'net_unittests_apk', 1643 'target_name': 'net_unittests_apk',
1651 'type': 'none', 1644 'type': 'none',
1652 'dependencies': [ 1645 'dependencies': [
1653 'net_java', 1646 'net_java',
1654 'net_javatests', 1647 'net_javatests',
1655 'net_unittests', 1648 'net_unittests',
1656 ], 1649 ],
1650 'conditions': [
1651 ['v8_use_external_startup_data==1', {
1652 'dependencies': [
1653 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1654 ],
1655 'copies': [
1656 {
1657 'destination': '<(asset_location)',
1658 'files': [
1659 '<(PRODUCT_DIR)/natives_blob.bin',
1660 '<(PRODUCT_DIR)/snapshot_blob.bin',
1661 ],
1662 },
1663 ],
1664 }],
1665 ],
1657 'variables': { 1666 'variables': {
1658 'test_suite_name': 'net_unittests', 1667 'test_suite_name': 'net_unittests',
1659 'conditions': [ 1668 'conditions': [
1660 ['v8_use_external_startup_data==1', { 1669 ['v8_use_external_startup_data==1', {
1670 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1661 'additional_input_paths': [ 1671 'additional_input_paths': [
1672 '<(PRODUCT_DIR)/net_unittests_apk/assets/natives_blob.bin',
1673 '<(PRODUCT_DIR)/net_unittests_apk/assets/snapshot_blob.bin',
1674 ],
1675 'inputs': [
1662 '<(PRODUCT_DIR)/natives_blob.bin', 1676 '<(PRODUCT_DIR)/natives_blob.bin',
1663 '<(PRODUCT_DIR)/snapshot_blob.bin', 1677 '<(PRODUCT_DIR)/snapshot_blob.bin',
1664 ], 1678 ],
1665 'copies': [
1666 {
1667 'destination': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1668 'files': [
1669 '<(PRODUCT_DIR)/natives_blob.bin',
1670 '<(PRODUCT_DIR)/snapshot_blob.bin',
1671 ],
1672 },
1673 ],
1674 }], 1679 }],
1675 ], 1680 ],
1676 }, 1681 },
1677 'includes': [ '../build/apk_test.gypi' ], 1682 'includes': [ '../build/apk_test.gypi' ],
1678 }, 1683 },
1679 ], 1684 ],
1680 }], 1685 }],
1681 ['OS == "android" or OS == "linux"', { 1686 ['OS == "android" or OS == "linux"', {
1682 'targets': [ 1687 'targets': [
1683 { 1688 {
(...skipping 21 matching lines...) Expand all
1705 '../build/isolate.gypi', 1710 '../build/isolate.gypi',
1706 ], 1711 ],
1707 'sources': [ 1712 'sources': [
1708 'net_unittests.isolate', 1713 'net_unittests.isolate',
1709 ], 1714 ],
1710 }, 1715 },
1711 ], 1716 ],
1712 }], 1717 }],
1713 ], 1718 ],
1714 } 1719 }
OLDNEW
« no previous file with comments | « net/http/url_security_manager_win.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698