OLD | NEW |
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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 'libraries': [ | 435 'libraries': [ |
436 '$(SDKROOT)/System/Library/Frameworks/CFNetwork.framework', | 436 '$(SDKROOT)/System/Library/Frameworks/CFNetwork.framework', |
437 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framewo
rk', | 437 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framewo
rk', |
438 '$(SDKROOT)/System/Library/Frameworks/Security.framework', | 438 '$(SDKROOT)/System/Library/Frameworks/Security.framework', |
439 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framew
ork', | 439 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framew
ork', |
440 '$(SDKROOT)/usr/lib/libresolv.dylib', | 440 '$(SDKROOT)/usr/lib/libresolv.dylib', |
441 ], | 441 ], |
442 }, | 442 }, |
443 }, | 443 }, |
444 ], | 444 ], |
| 445 [ 'OS == "ios" or OS == "mac"', { |
| 446 'sources': [ |
| 447 '<@(net_base_mac_ios_sources)', |
| 448 ], |
| 449 }, |
| 450 ], |
445 ['OS=="android" and _toolset=="target" and android_webview_build == 0',
{ | 451 ['OS=="android" and _toolset=="target" and android_webview_build == 0',
{ |
446 'dependencies': [ | 452 'dependencies': [ |
447 'net_java', | 453 'net_java', |
448 ], | 454 ], |
449 }], | 455 }], |
450 [ 'OS == "android"', { | 456 [ 'OS == "android"', { |
451 'dependencies': [ | 457 'dependencies': [ |
452 'net_jni_headers', | 458 'net_jni_headers', |
453 ], | 459 ], |
454 'sources!': [ | 460 'sources!': [ |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { | 549 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { |
544 'dependencies': [ | 550 'dependencies': [ |
545 'epoll_server', | 551 'epoll_server', |
546 'flip_in_mem_edsm_server_base', | 552 'flip_in_mem_edsm_server_base', |
547 'quic_base', | 553 'quic_base', |
548 ], | 554 ], |
549 'sources': [ | 555 'sources': [ |
550 '<@(net_linux_test_sources)', | 556 '<@(net_linux_test_sources)', |
551 ], | 557 ], |
552 }], | 558 }], |
| 559 ['OS == "mac" or OS == "ios"', { |
| 560 'sources': [ |
| 561 '<@(net_base_test_mac_ios_sources)', |
| 562 ], |
| 563 }], |
553 ['chromeos==1', { | 564 ['chromeos==1', { |
554 'sources!': [ | 565 'sources!': [ |
555 'proxy/proxy_config_service_linux_unittest.cc', | 566 'proxy/proxy_config_service_linux_unittest.cc', |
556 ], | 567 ], |
557 }], | 568 }], |
558 [ 'OS == "android"', { | 569 [ 'OS == "android"', { |
559 'sources!': [ | 570 'sources!': [ |
560 # See bug http://crbug.com/344533. | 571 # See bug http://crbug.com/344533. |
561 'disk_cache/blockfile/index_table_v3_unittest.cc', | 572 'disk_cache/blockfile/index_table_v3_unittest.cc', |
562 # No res_ninit() et al on Android, so this doesn't make a lot of | 573 # No res_ninit() et al on Android, so this doesn't make a lot of |
(...skipping 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 '../build/isolate.gypi', | 1738 '../build/isolate.gypi', |
1728 ], | 1739 ], |
1729 'sources': [ | 1740 'sources': [ |
1730 'net_unittests.isolate', | 1741 'net_unittests.isolate', |
1731 ], | 1742 ], |
1732 }, | 1743 }, |
1733 ], | 1744 ], |
1734 }], | 1745 }], |
1735 ], | 1746 ], |
1736 } | 1747 } |
OLD | NEW |