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

Side by Side Diff: net/net.gyp

Issue 11428150: LoadTiming implementation in net, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Try upload again Created 8 years 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'base/keygen_handler.cc', 171 'base/keygen_handler.cc',
172 'base/keygen_handler.h', 172 'base/keygen_handler.h',
173 'base/keygen_handler_mac.cc', 173 'base/keygen_handler_mac.cc',
174 'base/keygen_handler_nss.cc', 174 'base/keygen_handler_nss.cc',
175 'base/keygen_handler_openssl.cc', 175 'base/keygen_handler_openssl.cc',
176 'base/keygen_handler_win.cc', 176 'base/keygen_handler_win.cc',
177 'base/load_flags.h', 177 'base/load_flags.h',
178 'base/load_flags_list.h', 178 'base/load_flags_list.h',
179 'base/load_states.h', 179 'base/load_states.h',
180 'base/load_states_list.h', 180 'base/load_states_list.h',
181 'base/load_timing_info.cc',
182 'base/load_timing_info.h',
181 'base/mapped_host_resolver.cc', 183 'base/mapped_host_resolver.cc',
182 'base/mapped_host_resolver.h', 184 'base/mapped_host_resolver.h',
183 'base/mime_sniffer.cc', 185 'base/mime_sniffer.cc',
184 'base/mime_sniffer.h', 186 'base/mime_sniffer.h',
185 'base/mime_util.cc', 187 'base/mime_util.cc',
186 'base/mime_util.h', 188 'base/mime_util.h',
187 'base/multi_threaded_cert_verifier.cc', 189 'base/multi_threaded_cert_verifier.cc',
188 'base/multi_threaded_cert_verifier.h', 190 'base/multi_threaded_cert_verifier.h',
189 'base/net_error_list.h', 191 'base/net_error_list.h',
190 'base/net_errors.cc', 192 'base/net_errors.cc',
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 'socket/client_socket_pool.cc', 731 'socket/client_socket_pool.cc',
730 'socket/client_socket_pool.h', 732 'socket/client_socket_pool.h',
731 'socket/client_socket_pool_base.cc', 733 'socket/client_socket_pool_base.cc',
732 'socket/client_socket_pool_base.h', 734 'socket/client_socket_pool_base.h',
733 'socket/client_socket_pool_histograms.cc', 735 'socket/client_socket_pool_histograms.cc',
734 'socket/client_socket_pool_histograms.h', 736 'socket/client_socket_pool_histograms.h',
735 'socket/client_socket_pool_manager.cc', 737 'socket/client_socket_pool_manager.cc',
736 'socket/client_socket_pool_manager.h', 738 'socket/client_socket_pool_manager.h',
737 'socket/client_socket_pool_manager_impl.cc', 739 'socket/client_socket_pool_manager_impl.cc',
738 'socket/client_socket_pool_manager_impl.h', 740 'socket/client_socket_pool_manager_impl.h',
741 'socket/connect_timing.cc',
742 'socket/connect_timing.h',
739 'socket/next_proto.h', 743 'socket/next_proto.h',
740 'socket/nss_ssl_util.cc', 744 'socket/nss_ssl_util.cc',
741 'socket/nss_ssl_util.h', 745 'socket/nss_ssl_util.h',
742 'socket/server_socket.h', 746 'socket/server_socket.h',
743 'socket/socket_net_log_params.cc', 747 'socket/socket_net_log_params.cc',
744 'socket/socket_net_log_params.h', 748 'socket/socket_net_log_params.h',
745 'socket/socket.h', 749 'socket/socket.h',
746 'socket/socks5_client_socket.cc', 750 'socket/socks5_client_socket.cc',
747 'socket/socks5_client_socket.h', 751 'socket/socks5_client_socket.h',
748 'socket/socks_client_socket.cc', 752 'socket/socks_client_socket.cc',
(...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after
2381 '--result', '<@(_outputs)', 2385 '--result', '<@(_outputs)',
2382 '--isolate', 'net_unittests.isolate', 2386 '--isolate', 'net_unittests.isolate',
2383 ], 2387 ],
2384 }, 2388 },
2385 ], 2389 ],
2386 }, 2390 },
2387 ], 2391 ],
2388 }], 2392 }],
2389 ], 2393 ],
2390 } 2394 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698