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 # Defines an extra set of libs with an alternate copy of org.apache.http. | 8 # Defines an extra set of libs with an alternate copy of org.apache.http. |
9 # TODO(yfriedman): Remove this when crbug.com/488192 is fixed. | 9 # TODO(yfriedman): Remove this when crbug.com/488192 is fixed. |
10 'net_test_extra_libs': [], | 10 'net_test_extra_libs': [], |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 'target_name': 'simple_quic_tools', | 814 'target_name': 'simple_quic_tools', |
815 'type': 'static_library', | 815 'type': 'static_library', |
816 'dependencies': [ | 816 'dependencies': [ |
817 '../base/base.gyp:base', | 817 '../base/base.gyp:base', |
818 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 818 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
819 '../url/url.gyp:url_lib', | 819 '../url/url.gyp:url_lib', |
820 'net', | 820 'net', |
821 'net_quic_proto', | 821 'net_quic_proto', |
822 ], | 822 ], |
823 'sources': [ | 823 'sources': [ |
| 824 'tools/quic/quic_client_base.cc', |
| 825 'tools/quic/quic_client_base.h', |
824 'tools/quic/quic_client_session.cc', | 826 'tools/quic/quic_client_session.cc', |
825 'tools/quic/quic_client_session.h', | 827 'tools/quic/quic_client_session.h', |
826 'tools/quic/quic_dispatcher.cc', | 828 'tools/quic/quic_dispatcher.cc', |
827 'tools/quic/quic_dispatcher.h', | 829 'tools/quic/quic_dispatcher.h', |
828 'tools/quic/quic_in_memory_cache.cc', | 830 'tools/quic/quic_in_memory_cache.cc', |
829 'tools/quic/quic_in_memory_cache.h', | 831 'tools/quic/quic_in_memory_cache.h', |
830 'tools/quic/quic_per_connection_packet_writer.cc', | 832 'tools/quic/quic_per_connection_packet_writer.cc', |
831 'tools/quic/quic_per_connection_packet_writer.h', | 833 'tools/quic/quic_per_connection_packet_writer.h', |
832 'tools/quic/quic_server_session.cc', | 834 'tools/quic/quic_server_session.cc', |
833 'tools/quic/quic_server_session.h', | 835 'tools/quic/quic_server_session.h', |
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 '../build/isolate.gypi', | 1591 '../build/isolate.gypi', |
1590 ], | 1592 ], |
1591 'sources': [ | 1593 'sources': [ |
1592 'net_unittests.isolate', | 1594 'net_unittests.isolate', |
1593 ], | 1595 ], |
1594 }, | 1596 }, |
1595 ], | 1597 ], |
1596 }], | 1598 }], |
1597 ], | 1599 ], |
1598 } | 1600 } |
OLD | NEW |