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

Side by Side Diff: net/net.gypi

Issue 2130493002: Implement THROTTLED priority semantics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NetworkStreamThrottler
Patch Set: Incorporated comments and substantially simplified state storage. Created 4 years, 3 months 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 'base/network_change_notifier_win.h', 331 'base/network_change_notifier_win.h',
332 'base/network_config_watcher_mac.cc', 332 'base/network_config_watcher_mac.cc',
333 'base/network_config_watcher_mac.h', 333 'base/network_config_watcher_mac.h',
334 'base/network_delegate.cc', 334 'base/network_delegate.cc',
335 'base/network_delegate.h', 335 'base/network_delegate.h',
336 'base/network_delegate_impl.cc', 336 'base/network_delegate_impl.cc',
337 'base/network_delegate_impl.h', 337 'base/network_delegate_impl.h',
338 'base/network_interfaces_linux.cc', 338 'base/network_interfaces_linux.cc',
339 'base/network_interfaces_mac.cc', 339 'base/network_interfaces_mac.cc',
340 'base/network_interfaces_win.cc', 340 'base/network_interfaces_win.cc',
341 'base/network_throttle_manager.cc',
342 'base/network_throttle_manager.h', 341 'base/network_throttle_manager.h',
342 'base/network_throttle_manager_impl.cc',
343 'base/network_throttle_manager_impl.h',
343 'base/platform_mime_util.h', 344 'base/platform_mime_util.h',
344 'base/platform_mime_util_linux.cc', 345 'base/platform_mime_util_linux.cc',
345 'base/platform_mime_util_mac.mm', 346 'base/platform_mime_util_mac.mm',
346 'base/platform_mime_util_win.cc', 347 'base/platform_mime_util_win.cc',
347 'base/prioritized_dispatcher.cc', 348 'base/prioritized_dispatcher.cc',
348 'base/prioritized_dispatcher.h', 349 'base/prioritized_dispatcher.h',
349 'base/priority_queue.h', 350 'base/priority_queue.h',
350 'base/proxy_delegate.h', 351 'base/proxy_delegate.h',
352 'base/quantile_estimator.cc',
353 'base/quantile_estimator.h',
351 'base/request_priority.cc', 354 'base/request_priority.cc',
352 'base/request_priority.h', 355 'base/request_priority.h',
353 'base/sdch_dictionary.cc', 356 'base/sdch_dictionary.cc',
354 'base/sdch_dictionary.h', 357 'base/sdch_dictionary.h',
355 'base/sdch_manager.cc', 358 'base/sdch_manager.cc',
356 'base/sdch_manager.h', 359 'base/sdch_manager.h',
357 'base/sdch_net_log_params.cc', 360 'base/sdch_net_log_params.cc',
358 'base/sdch_net_log_params.h', 361 'base/sdch_net_log_params.h',
359 'base/sdch_observer.cc', 362 'base/sdch_observer.cc',
360 'base/sdch_observer.h', 363 'base/sdch_observer.h',
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 'base/mime_util_unittest.cc', 1375 'base/mime_util_unittest.cc',
1373 'base/network_activity_monitor_unittest.cc', 1376 'base/network_activity_monitor_unittest.cc',
1374 'base/network_change_notifier_unittest.cc', 1377 'base/network_change_notifier_unittest.cc',
1375 'base/network_change_notifier_win_unittest.cc', 1378 'base/network_change_notifier_win_unittest.cc',
1376 'base/network_interfaces_unittest.cc', 1379 'base/network_interfaces_unittest.cc',
1377 'base/network_throttle_manager_unittest.cc', 1380 'base/network_throttle_manager_unittest.cc',
1378 'base/parse_number_unittest.cc', 1381 'base/parse_number_unittest.cc',
1379 'base/port_util_unittest.cc', 1382 'base/port_util_unittest.cc',
1380 'base/prioritized_dispatcher_unittest.cc', 1383 'base/prioritized_dispatcher_unittest.cc',
1381 'base/priority_queue_unittest.cc', 1384 'base/priority_queue_unittest.cc',
1385 'base/quantile_estimator_unittest.cc',
1382 'base/registry_controlled_domains/registry_controlled_domain_unittest.cc', 1386 'base/registry_controlled_domains/registry_controlled_domain_unittest.cc',
1383 'base/sdch_dictionary_unittest.cc', 1387 'base/sdch_dictionary_unittest.cc',
1384 'base/sdch_manager_unittest.cc', 1388 'base/sdch_manager_unittest.cc',
1385 'base/stale_while_revalidate_experiment_domains_unittest.cc', 1389 'base/stale_while_revalidate_experiment_domains_unittest.cc',
1386 'base/static_cookie_policy_unittest.cc', 1390 'base/static_cookie_policy_unittest.cc',
1387 'base/test_completion_callback_unittest.cc', 1391 'base/test_completion_callback_unittest.cc',
1388 'base/test_proxy_delegate.cc', 1392 'base/test_proxy_delegate.cc',
1389 'base/test_proxy_delegate.h', 1393 'base/test_proxy_delegate.h',
1390 'base/upload_bytes_element_reader_unittest.cc', 1394 'base/upload_bytes_element_reader_unittest.cc',
1391 'base/upload_file_element_reader_unittest.cc', 1395 'base/upload_file_element_reader_unittest.cc',
(...skipping 1811 matching lines...) Expand 10 before | Expand all | Expand 10 after
3203 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3207 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3204 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3208 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3205 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3209 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3206 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3210 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3207 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3211 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3208 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3212 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3209 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3213 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3210 ], 3214 ],
3211 } 3215 }
3212 } 3216 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698