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

Side by Side Diff: net/net.gypi

Issue 2367143002: NQE: Cleanup observation buffer code (Closed)
Patch Set: ps Created 4 years, 2 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
« no previous file with comments | « no previous file | net/nqe/network_quality_observation_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1577 matching lines...) Expand 10 before | Expand all | Expand 10 after
1588 'log/net_log_unittest.cc', 1588 'log/net_log_unittest.cc',
1589 'log/net_log_util_unittest.cc', 1589 'log/net_log_util_unittest.cc',
1590 'log/trace_net_log_observer_unittest.cc', 1590 'log/trace_net_log_observer_unittest.cc',
1591 'log/write_to_file_net_log_observer_unittest.cc', 1591 'log/write_to_file_net_log_observer_unittest.cc',
1592 'log/bounded_file_net_log_observer_unittest.cc', 1592 'log/bounded_file_net_log_observer_unittest.cc',
1593 'nqe/effective_connection_type_unittest.cc', 1593 'nqe/effective_connection_type_unittest.cc',
1594 'nqe/network_qualities_prefs_manager_unittest.cc', 1594 'nqe/network_qualities_prefs_manager_unittest.cc',
1595 'nqe/network_quality_estimator_test_util.cc', 1595 'nqe/network_quality_estimator_test_util.cc',
1596 'nqe/network_quality_estimator_test_util.h', 1596 'nqe/network_quality_estimator_test_util.h',
1597 'nqe/network_quality_estimator_unittest.cc', 1597 'nqe/network_quality_estimator_unittest.cc',
1598 'nqe/network_quality_observation_unittest.cc',
1599 'nqe/network_quality_store_unittest.cc', 1598 'nqe/network_quality_store_unittest.cc',
1599 'nqe/observation_buffer_unittest.cc',
1600 'nqe/throughput_analyzer_unittest.cc', 1600 'nqe/throughput_analyzer_unittest.cc',
1601 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc', 1601 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc',
1602 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc', 1602 'proxy/dhcp_proxy_script_fetcher_factory_unittest.cc',
1603 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc', 1603 'proxy/dhcp_proxy_script_fetcher_win_unittest.cc',
1604 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc', 1604 'proxy/mojo_proxy_resolver_factory_impl_unittest.cc',
1605 'proxy/mojo_proxy_resolver_impl_unittest.cc', 1605 'proxy/mojo_proxy_resolver_impl_unittest.cc',
1606 'proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc', 1606 'proxy/mojo_proxy_resolver_v8_tracing_bindings_unittest.cc',
1607 'proxy/multi_threaded_proxy_resolver_unittest.cc', 1607 'proxy/multi_threaded_proxy_resolver_unittest.cc',
1608 'proxy/network_delegate_error_observer_unittest.cc', 1608 'proxy/network_delegate_error_observer_unittest.cc',
1609 'proxy/proxy_bypass_rules_unittest.cc', 1609 'proxy/proxy_bypass_rules_unittest.cc',
(...skipping 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after
3236 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3236 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3237 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3237 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3238 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3238 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3239 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3239 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3240 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3240 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3241 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3241 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3242 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3242 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3243 ], 3243 ],
3244 } 3244 }
3245 } 3245 }
OLDNEW
« no previous file with comments | « no previous file | net/nqe/network_quality_observation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698