OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 578 matching lines...) Loading... |
589 'base/data_url_unittest.cc', | 589 'base/data_url_unittest.cc', |
590 'base/directory_lister_unittest.cc', | 590 'base/directory_lister_unittest.cc', |
591 'base/dns_util_unittest.cc', | 591 'base/dns_util_unittest.cc', |
592 'base/escape_unittest.cc', | 592 'base/escape_unittest.cc', |
593 'base/file_stream_unittest.cc', | 593 'base/file_stream_unittest.cc', |
594 'base/filter_unittest.cc', | 594 'base/filter_unittest.cc', |
595 'base/filter_unittest.h', | 595 'base/filter_unittest.h', |
596 'base/gzip_filter_unittest.cc', | 596 'base/gzip_filter_unittest.cc', |
597 'base/host_cache_unittest.cc', | 597 'base/host_cache_unittest.cc', |
598 'base/host_resolver_impl_unittest.cc', | 598 'base/host_resolver_impl_unittest.cc', |
| 599 'base/keygen_handler_unittest.cc', |
599 'base/load_log_unittest.cc', | 600 'base/load_log_unittest.cc', |
600 'base/load_log_unittest.h', | 601 'base/load_log_unittest.h', |
601 'base/load_log_util_unittest.cc', | 602 'base/load_log_util_unittest.cc', |
602 'base/listen_socket_unittest.cc', | 603 'base/listen_socket_unittest.cc', |
603 'base/listen_socket_unittest.h', | 604 'base/listen_socket_unittest.h', |
604 'base/mapped_host_resolver_unittest.cc', | 605 'base/mapped_host_resolver_unittest.cc', |
605 'base/mime_sniffer_unittest.cc', | 606 'base/mime_sniffer_unittest.cc', |
606 'base/mime_util_unittest.cc', | 607 'base/mime_util_unittest.cc', |
607 'base/mock_network_change_notifier.h', | 608 'base/mock_network_change_notifier.h', |
608 'base/net_test_constants.h', | 609 'base/net_test_constants.h', |
(...skipping 92 matching lines...) Loading... |
701 ], | 702 ], |
702 ['OS == "linux"', { | 703 ['OS == "linux"', { |
703 'conditions': [ | 704 'conditions': [ |
704 ['linux_use_tcmalloc==1', { | 705 ['linux_use_tcmalloc==1', { |
705 'dependencies': [ | 706 'dependencies': [ |
706 '../base/allocator/allocator.gyp:allocator', | 707 '../base/allocator/allocator.gyp:allocator', |
707 ], | 708 ], |
708 }], | 709 }], |
709 ], | 710 ], |
710 }], | 711 }], |
711 # This is needed to trigger the dll copy step on windows. | |
712 # TODO(mark): Specifying this here shouldn't be necessary. | |
713 [ 'OS == "win"', { | 712 [ 'OS == "win"', { |
| 713 'sources!': [ |
| 714 # Remove next line when KeygenHandler is implemented for Windows. |
| 715 'base/keygen_handler_unittest.cc', |
| 716 ], |
| 717 # This is needed to trigger the dll copy step on windows. |
| 718 # TODO(mark): Specifying this here shouldn't be necessary. |
714 'dependencies': [ | 719 'dependencies': [ |
715 '../third_party/icu/icu.gyp:icudata', | 720 '../third_party/icu/icu.gyp:icudata', |
716 ], | 721 ], |
717 }, | 722 }, |
718 ], | 723 ], |
719 ], | 724 ], |
720 }, | 725 }, |
721 { | 726 { |
722 'target_name': 'net_perftests', | 727 'target_name': 'net_perftests', |
723 'type': 'executable', | 728 'type': 'executable', |
(...skipping 190 matching lines...) Loading... |
914 ], | 919 ], |
915 }], | 920 }], |
916 ], | 921 ], |
917 } | 922 } |
918 | 923 |
919 # Local Variables: | 924 # Local Variables: |
920 # tab-width:2 | 925 # tab-width:2 |
921 # indent-tabs-mode:nil | 926 # indent-tabs-mode:nil |
922 # End: | 927 # End: |
923 # vim: set expandtab tabstop=2 shiftwidth=2: | 928 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |