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

Side by Side Diff: net/net.gyp

Issue 7413004: Uploading for backup... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: backup Created 9 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « net/dbus/dbus_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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 'base/x509_certificate.h', 231 'base/x509_certificate.h',
232 'base/x509_certificate_mac.cc', 232 'base/x509_certificate_mac.cc',
233 'base/x509_certificate_nss.cc', 233 'base/x509_certificate_nss.cc',
234 'base/x509_certificate_openssl.cc', 234 'base/x509_certificate_openssl.cc',
235 'base/x509_certificate_win.cc', 235 'base/x509_certificate_win.cc',
236 'base/x509_cert_types.cc', 236 'base/x509_cert_types.cc',
237 'base/x509_cert_types.h', 237 'base/x509_cert_types.h',
238 'base/x509_cert_types_mac.cc', 238 'base/x509_cert_types_mac.cc',
239 'base/x509_util_openssl.cc', 239 'base/x509_util_openssl.cc',
240 'base/x509_util_openssl.h', 240 'base/x509_util_openssl.h',
241 'dbus/dbus.cc',
242 'dbus/dbus.h',
241 'disk_cache/addr.cc', 243 'disk_cache/addr.cc',
242 'disk_cache/addr.h', 244 'disk_cache/addr.h',
243 'disk_cache/backend_impl.cc', 245 'disk_cache/backend_impl.cc',
244 'disk_cache/backend_impl.h', 246 'disk_cache/backend_impl.h',
245 'disk_cache/bitmap.cc', 247 'disk_cache/bitmap.cc',
246 'disk_cache/bitmap.h', 248 'disk_cache/bitmap.h',
247 'disk_cache/block_files.cc', 249 'disk_cache/block_files.cc',
248 'disk_cache/block_files.h', 250 'disk_cache/block_files.h',
249 'disk_cache/cache_util.h', 251 'disk_cache/cache_util.h',
250 'disk_cache/cache_util_posix.cc', 252 'disk_cache/cache_util_posix.cc',
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 'ENABLE_PERSISTENT_SESSION_COOKIES' 850 'ENABLE_PERSISTENT_SESSION_COOKIES'
849 ], 851 ],
850 }, { # else OS! = "android" 852 }, { # else OS! = "android"
851 'defines': [ 853 'defines': [
852 # These are the features Android doesn't support. 854 # These are the features Android doesn't support.
853 'ENABLE_MEDIA_CODEC_THEORA', 855 'ENABLE_MEDIA_CODEC_THEORA',
854 'ENABLE_MEDIA_TYPE_OGG', 856 'ENABLE_MEDIA_TYPE_OGG',
855 ], 857 ],
856 }, 858 },
857 ], 859 ],
860 [ 'OS == "linux"', {
861 'dependencies': [
862 '../build/linux/system.gyp:dbus',
863 ],
864 }, {
865 'sources!': [
866 'dbus/dbus.cc',
867 'dbus/dbus.h',
868 ],
869 },
870 ],
858 ], 871 ],
859 }, 872 },
860 { 873 {
861 'target_name': 'net_unittests', 874 'target_name': 'net_unittests',
862 'type': 'executable', 875 'type': 'executable',
863 'dependencies': [ 876 'dependencies': [
864 'net', 877 'net',
865 'net_test_support', 878 'net_test_support',
866 '../base/base.gyp:base', 879 '../base/base.gyp:base',
867 '../base/base.gyp:base_i18n', 880 '../base/base.gyp:base_i18n',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 'base/ssl_client_auth_cache_unittest.cc', 929 'base/ssl_client_auth_cache_unittest.cc',
917 'base/ssl_config_service_unittest.cc', 930 'base/ssl_config_service_unittest.cc',
918 'base/ssl_false_start_blacklist_unittest.cc', 931 'base/ssl_false_start_blacklist_unittest.cc',
919 'base/static_cookie_policy_unittest.cc', 932 'base/static_cookie_policy_unittest.cc',
920 'base/transport_security_state_unittest.cc', 933 'base/transport_security_state_unittest.cc',
921 'base/test_certificate_data.h', 934 'base/test_certificate_data.h',
922 'base/test_completion_callback_unittest.cc', 935 'base/test_completion_callback_unittest.cc',
923 'base/upload_data_stream_unittest.cc', 936 'base/upload_data_stream_unittest.cc',
924 'base/x509_certificate_unittest.cc', 937 'base/x509_certificate_unittest.cc',
925 'base/x509_cert_types_mac_unittest.cc', 938 'base/x509_cert_types_mac_unittest.cc',
939 'dbus/dbus_unittest.cc',
926 'disk_cache/addr_unittest.cc', 940 'disk_cache/addr_unittest.cc',
927 'disk_cache/backend_unittest.cc', 941 'disk_cache/backend_unittest.cc',
928 'disk_cache/bitmap_unittest.cc', 942 'disk_cache/bitmap_unittest.cc',
929 'disk_cache/block_files_unittest.cc', 943 'disk_cache/block_files_unittest.cc',
930 'disk_cache/cache_util_unittest.cc', 944 'disk_cache/cache_util_unittest.cc',
931 'disk_cache/disk_cache_test_base.cc', 945 'disk_cache/disk_cache_test_base.cc',
932 'disk_cache/disk_cache_test_base.h', 946 'disk_cache/disk_cache_test_base.h',
933 'disk_cache/entry_unittest.cc', 947 'disk_cache/entry_unittest.cc',
934 'disk_cache/mapped_file_unittest.cc', 948 'disk_cache/mapped_file_unittest.cc',
935 'disk_cache/storage_block_unittest.cc', 949 'disk_cache/storage_block_unittest.cc',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 'sources!': [ 1102 'sources!': [
1089 'http/http_auth_gssapi_posix_unittest.cc', 1103 'http/http_auth_gssapi_posix_unittest.cc',
1090 ], 1104 ],
1091 # This is needed to trigger the dll copy step on windows. 1105 # This is needed to trigger the dll copy step on windows.
1092 # TODO(mark): Specifying this here shouldn't be necessary. 1106 # TODO(mark): Specifying this here shouldn't be necessary.
1093 'dependencies': [ 1107 'dependencies': [
1094 '../third_party/icu/icu.gyp:icudata', 1108 '../third_party/icu/icu.gyp:icudata',
1095 ], 1109 ],
1096 }, 1110 },
1097 ], 1111 ],
1112 [ 'OS == "linux"', {
1113 'dependencies': [
1114 '../build/linux/system.gyp:dbus',
1115 ],
1116 }, {
1117 'sources!': [
1118 'dbus/dbus_unittest.cc',
1119 ],
1120 },
1121 ],
1098 ], 1122 ],
1099 }, 1123 },
1100 { 1124 {
1101 'target_name': 'net_perftests', 1125 'target_name': 'net_perftests',
1102 'type': 'executable', 1126 'type': 'executable',
1103 'dependencies': [ 1127 'dependencies': [
1104 'net', 1128 'net',
1105 'net_test_support', 1129 'net_test_support',
1106 '../base/base.gyp:base', 1130 '../base/base.gyp:base',
1107 '../base/base.gyp:base_i18n', 1131 '../base/base.gyp:base_i18n',
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
1481 'tools/dump_cache/url_to_filename_encoder.cc', 1505 'tools/dump_cache/url_to_filename_encoder.cc',
1482 'tools/dump_cache/url_to_filename_encoder.h', 1506 'tools/dump_cache/url_to_filename_encoder.h',
1483 'tools/dump_cache/url_utilities.h', 1507 'tools/dump_cache/url_utilities.h',
1484 'tools/dump_cache/url_utilities.cc', 1508 'tools/dump_cache/url_utilities.cc',
1485 ], 1509 ],
1486 }, 1510 },
1487 ], 1511 ],
1488 }], 1512 }],
1489 ], 1513 ],
1490 } 1514 }
OLDNEW
« no previous file with comments | « net/dbus/dbus_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698