| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'base/host_resolver.cc', | 69 'base/host_resolver.cc', |
| 70 'base/host_resolver.h', | 70 'base/host_resolver.h', |
| 71 'base/host_resolver_impl.cc', | 71 'base/host_resolver_impl.cc', |
| 72 'base/host_resolver_impl.h', | 72 'base/host_resolver_impl.h', |
| 73 'base/host_resolver_proc.cc', | 73 'base/host_resolver_proc.cc', |
| 74 'base/host_resolver_proc.h', | 74 'base/host_resolver_proc.h', |
| 75 'base/https_prober.h', | 75 'base/https_prober.h', |
| 76 'base/https_prober.cc', | 76 'base/https_prober.cc', |
| 77 'base/io_buffer.cc', | 77 'base/io_buffer.cc', |
| 78 'base/io_buffer.h', | 78 'base/io_buffer.h', |
| 79 'base/keygen_handler.cc', |
| 79 'base/keygen_handler.h', | 80 'base/keygen_handler.h', |
| 80 'base/keygen_handler_mac.cc', | 81 'base/keygen_handler_mac.cc', |
| 81 'base/keygen_handler_nss.cc', | 82 'base/keygen_handler_nss.cc', |
| 82 'base/keygen_handler_win.cc', | 83 'base/keygen_handler_win.cc', |
| 83 'base/listen_socket.cc', | 84 'base/listen_socket.cc', |
| 84 'base/listen_socket.h', | 85 'base/listen_socket.h', |
| 85 'base/load_flags.h', | 86 'base/load_flags.h', |
| 86 'base/load_states.h', | 87 'base/load_states.h', |
| 87 'base/mapped_host_resolver.cc', | 88 'base/mapped_host_resolver.cc', |
| 88 'base/mapped_host_resolver.h', | 89 'base/mapped_host_resolver.h', |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 ['OS == "linux"', { | 731 ['OS == "linux"', { |
| 731 'conditions': [ | 732 'conditions': [ |
| 732 ['linux_use_tcmalloc==1', { | 733 ['linux_use_tcmalloc==1', { |
| 733 'dependencies': [ | 734 'dependencies': [ |
| 734 '../base/allocator/allocator.gyp:allocator', | 735 '../base/allocator/allocator.gyp:allocator', |
| 735 ], | 736 ], |
| 736 }], | 737 }], |
| 737 ], | 738 ], |
| 738 }], | 739 }], |
| 739 [ 'OS == "win"', { | 740 [ 'OS == "win"', { |
| 740 'sources!': [ | |
| 741 # Remove next line when KeygenHandler is implemented for Windows. | |
| 742 'base/keygen_handler_unittest.cc', | |
| 743 ], | |
| 744 # This is needed to trigger the dll copy step on windows. | 741 # This is needed to trigger the dll copy step on windows. |
| 745 # TODO(mark): Specifying this here shouldn't be necessary. | 742 # TODO(mark): Specifying this here shouldn't be necessary. |
| 746 'dependencies': [ | 743 'dependencies': [ |
| 747 '../third_party/icu/icu.gyp:icudata', | 744 '../third_party/icu/icu.gyp:icudata', |
| 748 ], | 745 ], |
| 749 }, | 746 }, |
| 750 ], | 747 ], |
| 751 ], | 748 ], |
| 752 }, | 749 }, |
| 753 { | 750 { |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 ], | 1013 ], |
| 1017 }], | 1014 }], |
| 1018 ], | 1015 ], |
| 1019 } | 1016 } |
| 1020 | 1017 |
| 1021 # Local Variables: | 1018 # Local Variables: |
| 1022 # tab-width:2 | 1019 # tab-width:2 |
| 1023 # indent-tabs-mode:nil | 1020 # indent-tabs-mode:nil |
| 1024 # End: | 1021 # End: |
| 1025 # vim: set expandtab tabstop=2 shiftwidth=2: | 1022 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |