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

Side by Side Diff: net/net.gyp

Issue 8673006: Remove unnecessary gtest dependency from some net/ non-test targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 | 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 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 ], 1468 ],
1469 }, 1469 },
1470 { 1470 {
1471 'target_name': 'fetch_server', 1471 'target_name': 'fetch_server',
1472 'type': 'executable', 1472 'type': 'executable',
1473 'variables': { 'enable_wexit_time_destructors': 1, }, 1473 'variables': { 'enable_wexit_time_destructors': 1, },
1474 'dependencies': [ 1474 'dependencies': [
1475 'net', 1475 'net',
1476 '../base/base.gyp:base', 1476 '../base/base.gyp:base',
1477 '../build/temp_gyp/googleurl.gyp:googleurl', 1477 '../build/temp_gyp/googleurl.gyp:googleurl',
1478 '../testing/gtest.gyp:gtest',
1479 ], 1478 ],
1480 'sources': [ 1479 'sources': [
1481 'tools/fetch/fetch_server.cc', 1480 'tools/fetch/fetch_server.cc',
1482 'tools/fetch/http_listen_socket.cc', 1481 'tools/fetch/http_listen_socket.cc',
1483 'tools/fetch/http_listen_socket.h', 1482 'tools/fetch/http_listen_socket.h',
1484 'tools/fetch/http_server.cc', 1483 'tools/fetch/http_server.cc',
1485 'tools/fetch/http_server.h', 1484 'tools/fetch/http_server.h',
1486 'tools/fetch/http_server_request_info.cc', 1485 'tools/fetch/http_server_request_info.cc',
1487 'tools/fetch/http_server_request_info.h', 1486 'tools/fetch/http_server_request_info.h',
1488 'tools/fetch/http_server_response_info.cc', 1487 'tools/fetch/http_server_response_info.cc',
1489 'tools/fetch/http_server_response_info.h', 1488 'tools/fetch/http_server_response_info.h',
1490 'tools/fetch/http_session.cc', 1489 'tools/fetch/http_session.cc',
1491 'tools/fetch/http_session.h', 1490 'tools/fetch/http_session.h',
1492 ], 1491 ],
1493 }, 1492 },
1494 { 1493 {
1495 'target_name': 'http_server', 1494 'target_name': 'http_server',
1496 'type': 'static_library', 1495 'type': 'static_library',
1497 'variables': { 'enable_wexit_time_destructors': 1, }, 1496 'variables': { 'enable_wexit_time_destructors': 1, },
1498 'dependencies': [ 1497 'dependencies': [
1499 'net', 1498 'net',
1500 '../base/base.gyp:base', 1499 '../base/base.gyp:base',
1501 '../testing/gtest.gyp:gtest',
1502 ], 1500 ],
1503 'sources': [ 1501 'sources': [
1504 'server/http_connection.cc', 1502 'server/http_connection.cc',
1505 'server/http_connection.h', 1503 'server/http_connection.h',
1506 'server/http_server.cc', 1504 'server/http_server.cc',
1507 'server/http_server.h', 1505 'server/http_server.h',
1508 'server/http_server_request_info.cc', 1506 'server/http_server_request_info.cc',
1509 'server/http_server_request_info.h', 1507 'server/http_server_request_info.h',
1510 'server/web_socket.cc', 1508 'server/web_socket.cc',
1511 'server/web_socket.h', 1509 'server/web_socket.h',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1683 'tools/dump_cache/url_to_filename_encoder.cc', 1681 'tools/dump_cache/url_to_filename_encoder.cc',
1684 'tools/dump_cache/url_to_filename_encoder.h', 1682 'tools/dump_cache/url_to_filename_encoder.h',
1685 'tools/dump_cache/url_utilities.h', 1683 'tools/dump_cache/url_utilities.h',
1686 'tools/dump_cache/url_utilities.cc', 1684 'tools/dump_cache/url_utilities.cc',
1687 ], 1685 ],
1688 }, 1686 },
1689 ], 1687 ],
1690 }], 1688 }],
1691 ], 1689 ],
1692 } 1690 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698