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

Side by Side Diff: net/net.gyp

Issue 8249008: Offline state detection for linux, using new D-Bus library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comment 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
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 }, 1227 },
1220 ], 1228 ],
1221 [ 'OS == "mac"', { 1229 [ 'OS == "mac"', {
1222 'dependencies': [ 1230 'dependencies': [
1223 '../third_party/nss/nss.gyp:nspr', 1231 '../third_party/nss/nss.gyp:nspr',
1224 '../third_party/nss/nss.gyp:nss', 1232 '../third_party/nss/nss.gyp:nss',
1225 'third_party/nss/ssl.gyp:ssl', 1233 'third_party/nss/ssl.gyp:ssl',
1226 ], 1234 ],
1227 }, 1235 },
1228 ], 1236 ],
1237 [ 'OS == "linux"', {
1238 'dependencies': [
1239 '../build/linux/system.gyp:dbus',
1240 '../dbus/dbus.gyp:dbus_test_support',
1241 ],
1242 },
1243 ],
1229 ], 1244 ],
1230 }, 1245 },
1231 { 1246 {
1232 'target_name': 'net_perftests', 1247 'target_name': 'net_perftests',
1233 'type': 'executable', 1248 'type': 'executable',
1234 'dependencies': [ 1249 'dependencies': [
1235 'net', 1250 'net',
1236 'net_test_support', 1251 'net_test_support',
1237 '../base/base.gyp:base', 1252 '../base/base.gyp:base',
1238 '../base/base.gyp:base_i18n', 1253 '../base/base.gyp:base_i18n',
(...skipping 393 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

Powered by Google App Engine
This is Rietveld 408576698