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

Side by Side Diff: net/net.gyp

Issue 8575013: Offline state detection for linux, using new D-Bus library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « net/base/network_change_notifier_linux_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 'ENABLE_PERSISTENT_SESSION_COOKIES' 932 'ENABLE_PERSISTENT_SESSION_COOKIES'
933 ], 933 ],
934 }, { # else OS! = "android" 934 }, { # else OS! = "android"
935 'defines': [ 935 'defines': [
936 # These are the features Android doesn't support. 936 # These are the features Android doesn't support.
937 'ENABLE_MEDIA_CODEC_THEORA', 937 'ENABLE_MEDIA_CODEC_THEORA',
938 'ENABLE_MEDIA_TYPE_OGG', 938 'ENABLE_MEDIA_TYPE_OGG',
939 ], 939 ],
940 }, 940 },
941 ], 941 ],
942 [ 'OS == "linux"', {
943 'dependencies': [
944 '../build/linux/system.gyp:dbus',
945 '../dbus/dbus.gyp:dbus',
946 ],
947 },
948 ],
942 ], 949 ],
943 }, 950 },
944 { 951 {
945 'target_name': 'net_unittests', 952 'target_name': 'net_unittests',
946 'type': 'executable', 953 'type': 'executable',
947 'dependencies': [ 954 'dependencies': [
948 'net', 955 'net',
949 'net_test_support', 956 'net_test_support',
950 '../base/base.gyp:base', 957 '../base/base.gyp:base',
951 '../base/base.gyp:base_i18n', 958 '../base/base.gyp:base_i18n',
(...skipping 30 matching lines...) Expand all
982 'base/listen_socket_unittest.cc', 989 'base/listen_socket_unittest.cc',
983 'base/listen_socket_unittest.h', 990 'base/listen_socket_unittest.h',
984 'base/mapped_host_resolver_unittest.cc', 991 'base/mapped_host_resolver_unittest.cc',
985 'base/mime_sniffer_unittest.cc', 992 'base/mime_sniffer_unittest.cc',
986 'base/mime_util_unittest.cc', 993 'base/mime_util_unittest.cc',
987 'base/mock_filter_context.cc', 994 'base/mock_filter_context.cc',
988 'base/mock_filter_context.h', 995 'base/mock_filter_context.h',
989 'base/net_log_unittest.cc', 996 'base/net_log_unittest.cc',
990 'base/net_log_unittest.h', 997 'base/net_log_unittest.h',
991 'base/net_util_unittest.cc', 998 'base/net_util_unittest.cc',
999 'base/network_change_notifier_linux_unittest.cc',
992 'base/network_change_notifier_win_unittest.cc', 1000 'base/network_change_notifier_win_unittest.cc',
993 'base/origin_bound_cert_service_unittest.cc', 1001 'base/origin_bound_cert_service_unittest.cc',
994 'base/pem_tokenizer_unittest.cc', 1002 'base/pem_tokenizer_unittest.cc',
995 'base/registry_controlled_domain_unittest.cc', 1003 'base/registry_controlled_domain_unittest.cc',
996 'base/run_all_unittests.cc', 1004 'base/run_all_unittests.cc',
997 'base/sdch_filter_unittest.cc', 1005 'base/sdch_filter_unittest.cc',
998 'base/single_request_host_resolver_unittest.cc', 1006 'base/single_request_host_resolver_unittest.cc',
999 'base/ssl_cipher_suite_names_unittest.cc', 1007 'base/ssl_cipher_suite_names_unittest.cc',
1000 'base/ssl_client_auth_cache_unittest.cc', 1008 'base/ssl_client_auth_cache_unittest.cc',
1001 'base/ssl_config_service_unittest.cc', 1009 'base/ssl_config_service_unittest.cc',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
1217 }, 1225 },
1218 ], 1226 ],
1219 [ 'OS == "mac"', { 1227 [ 'OS == "mac"', {
1220 'dependencies': [ 1228 'dependencies': [
1221 '../third_party/nss/nss.gyp:nspr', 1229 '../third_party/nss/nss.gyp:nspr',
1222 '../third_party/nss/nss.gyp:nss', 1230 '../third_party/nss/nss.gyp:nss',
1223 'third_party/nss/ssl.gyp:ssl', 1231 'third_party/nss/ssl.gyp:ssl',
1224 ], 1232 ],
1225 }, 1233 },
1226 ], 1234 ],
1235 [ 'OS == "linux"', {
1236 'dependencies': [
1237 '../build/linux/system.gyp:dbus',
1238 '../dbus/dbus.gyp:dbus_test_support',
1239 ],
1240 },
1241 ],
1227 ], 1242 ],
1228 }, 1243 },
1229 { 1244 {
1230 'target_name': 'net_perftests', 1245 'target_name': 'net_perftests',
1231 'type': 'executable', 1246 'type': 'executable',
1232 'dependencies': [ 1247 'dependencies': [
1233 'net', 1248 'net',
1234 'net_test_support', 1249 'net_test_support',
1235 '../base/base.gyp:base', 1250 '../base/base.gyp:base',
1236 '../base/base.gyp:base_i18n', 1251 '../base/base.gyp:base_i18n',
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 'tools/dump_cache/url_to_filename_encoder.cc', 1647 'tools/dump_cache/url_to_filename_encoder.cc',
1633 'tools/dump_cache/url_to_filename_encoder.h', 1648 'tools/dump_cache/url_to_filename_encoder.h',
1634 'tools/dump_cache/url_utilities.h', 1649 'tools/dump_cache/url_utilities.h',
1635 'tools/dump_cache/url_utilities.cc', 1650 'tools/dump_cache/url_utilities.cc',
1636 ], 1651 ],
1637 }, 1652 },
1638 ], 1653 ],
1639 }], 1654 }],
1640 ], 1655 ],
1641 } 1656 }
OLDNEW
« no previous file with comments | « net/base/network_change_notifier_linux_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698