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

Side by Side Diff: net/net.gyp

Issue 312003002: Port net/tools/balsa to non-Linux platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows compiler warnings Created 6 years, 6 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 | « no previous file | net/net.gypi » ('j') | net/tools/balsa/balsa_frame.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 'type': '<(gtest_target_type)', 534 'type': '<(gtest_target_type)',
535 'dependencies': [ 535 'dependencies': [
536 '../base/base.gyp:base', 536 '../base/base.gyp:base',
537 '../base/base.gyp:base_i18n', 537 '../base/base.gyp:base_i18n',
538 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 538 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
539 '../crypto/crypto.gyp:crypto', 539 '../crypto/crypto.gyp:crypto',
540 '../testing/gmock.gyp:gmock', 540 '../testing/gmock.gyp:gmock',
541 '../testing/gtest.gyp:gtest', 541 '../testing/gtest.gyp:gtest',
542 '../third_party/zlib/zlib.gyp:zlib', 542 '../third_party/zlib/zlib.gyp:zlib',
543 '../url/url.gyp:url_lib', 543 '../url/url.gyp:url_lib',
544 'balsa',
544 'http_server', 545 'http_server',
545 'net', 546 'net',
546 'net_derived_sources', 547 'net_derived_sources',
547 'net_test_support', 548 'net_test_support',
548 ], 549 ],
549 'sources': [ 550 'sources': [
550 '<@(net_test_sources)', 551 '<@(net_test_sources)',
551 ], 552 ],
552 'conditions': [ 553 'conditions': [
553 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 554 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
554 'dependencies': [ 555 'dependencies': [
555 'balsa',
556 'epoll_server', 556 'epoll_server',
557 'flip_in_mem_edsm_server_base', 557 'flip_in_mem_edsm_server_base',
558 'quic_base', 558 'quic_base',
559 ], 559 ],
560 'sources': [ 560 'sources': [
561 '<@(net_linux_test_sources)', 561 '<@(net_linux_test_sources)',
562 ], 562 ],
563 }], 563 }],
564 ['chromeos==1', { 564 ['chromeos==1', {
565 'sources!': [ 565 'sources!': [
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
1054 'server/http_server_request_info.h', 1054 'server/http_server_request_info.h',
1055 'server/http_server_response_info.cc', 1055 'server/http_server_response_info.cc',
1056 'server/http_server_response_info.h', 1056 'server/http_server_response_info.h',
1057 'server/web_socket.cc', 1057 'server/web_socket.cc',
1058 'server/web_socket.h', 1058 'server/web_socket.h',
1059 ], 1059 ],
1060 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1060 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1061 'msvs_disabled_warnings': [4267, ], 1061 'msvs_disabled_warnings': [4267, ],
1062 }, 1062 },
1063 { 1063 {
1064 'target_name': 'balsa',
1065 'type': 'static_library',
1066 'dependencies': [
1067 '../base/base.gyp:base',
1068 'net',
1069 ],
1070 'sources': [
1071 'tools/balsa/balsa_enums.h',
1072 'tools/balsa/balsa_frame.cc',
1073 'tools/balsa/balsa_frame.h',
1074 'tools/balsa/balsa_headers.cc',
1075 'tools/balsa/balsa_headers.h',
1076 'tools/balsa/balsa_headers_token_utils.cc',
1077 'tools/balsa/balsa_headers_token_utils.h',
1078 'tools/balsa/balsa_visitor_interface.h',
1079 'tools/balsa/http_message_constants.cc',
1080 'tools/balsa/http_message_constants.h',
1081 'tools/balsa/noop_balsa_visitor.h',
1082 'tools/balsa/simple_buffer.cc',
1083 'tools/balsa/simple_buffer.h',
1084 'tools/balsa/split.cc',
1085 'tools/balsa/split.h',
1086 'tools/balsa/string_piece_utils.h',
1087 ],
1088 },
1089 {
1064 'target_name': 'dump_cache', 1090 'target_name': 'dump_cache',
1065 'type': 'executable', 1091 'type': 'executable',
1066 'dependencies': [ 1092 'dependencies': [
1067 '../base/base.gyp:base', 1093 '../base/base.gyp:base',
1068 'net', 1094 'net',
1069 'net_test_support', 1095 'net_test_support',
1070 ], 1096 ],
1071 'sources': [ 1097 'sources': [
1072 'tools/dump_cache/cache_dumper.cc', 1098 'tools/dump_cache/cache_dumper.cc',
1073 'tools/dump_cache/cache_dumper.h', 1099 'tools/dump_cache/cache_dumper.h',
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 'tools/tld_cleanup/tld_cleanup.cc', 1313 'tools/tld_cleanup/tld_cleanup.cc',
1288 ], 1314 ],
1289 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1315 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1290 'msvs_disabled_warnings': [4267, ], 1316 'msvs_disabled_warnings': [4267, ],
1291 }, 1317 },
1292 ], 1318 ],
1293 }], 1319 }],
1294 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 1320 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
1295 'targets': [ 1321 'targets': [
1296 { 1322 {
1297 'target_name': 'balsa',
1298 'type': 'static_library',
1299 'dependencies': [
1300 '../base/base.gyp:base',
1301 'net',
1302 ],
1303 'sources': [
1304 'tools/balsa/balsa_enums.h',
1305 'tools/balsa/balsa_frame.cc',
1306 'tools/balsa/balsa_frame.h',
1307 'tools/balsa/balsa_headers.cc',
1308 'tools/balsa/balsa_headers.h',
1309 'tools/balsa/balsa_headers_token_utils.cc',
1310 'tools/balsa/balsa_headers_token_utils.h',
1311 'tools/balsa/balsa_visitor_interface.h',
1312 'tools/balsa/http_message_constants.cc',
1313 'tools/balsa/http_message_constants.h',
1314 'tools/balsa/noop_balsa_visitor.h',
1315 'tools/balsa/simple_buffer.cc',
1316 'tools/balsa/simple_buffer.h',
1317 'tools/balsa/split.cc',
1318 'tools/balsa/split.h',
1319 'tools/balsa/string_piece_utils.h',
1320 ],
1321 },
1322 {
1323 'target_name': 'epoll_server', 1323 'target_name': 'epoll_server',
1324 'type': 'static_library', 1324 'type': 'static_library',
1325 'dependencies': [ 1325 'dependencies': [
1326 '../base/base.gyp:base', 1326 '../base/base.gyp:base',
1327 'net', 1327 'net',
1328 ], 1328 ],
1329 'sources': [ 1329 'sources': [
1330 'tools/epoll_server/epoll_server.cc', 1330 'tools/epoll_server/epoll_server.cc',
1331 'tools/epoll_server/epoll_server.h', 1331 'tools/epoll_server/epoll_server.h',
1332 ], 1332 ],
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 'net_unittests.isolate', 1668 'net_unittests.isolate',
1669 ], 1669 ],
1670 'sources': [ 1670 'sources': [
1671 'net_unittests.isolate', 1671 'net_unittests.isolate',
1672 ], 1672 ],
1673 }, 1673 },
1674 ], 1674 ],
1675 }], 1675 }],
1676 ], 1676 ],
1677 } 1677 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/tools/balsa/balsa_frame.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698