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

Side by Side Diff: net/net.gyp

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | « media/media.gyp ('k') | net/third_party/nss/ssl.gyp » ('j') | 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 {
11 'target_name': 'net', 11 'target_name': 'net',
12 'type': '<(library)', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../base/base.gyp:base_i18n', 15 '../base/base.gyp:base_i18n',
16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
17 '../build/temp_gyp/googleurl.gyp:googleurl', 17 '../build/temp_gyp/googleurl.gyp:googleurl',
18 '../crypto/crypto.gyp:crypto', 18 '../crypto/crypto.gyp:crypto',
19 '../sdch/sdch.gyp:sdch', 19 '../sdch/sdch.gyp:sdch',
20 '../third_party/icu/icu.gyp:icui18n', 20 '../third_party/icu/icu.gyp:icui18n',
21 '../third_party/icu/icu.gyp:icuuc', 21 '../third_party/icu/icu.gyp:icuuc',
22 '../third_party/zlib/zlib.gyp:zlib', 22 '../third_party/zlib/zlib.gyp:zlib',
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 '../base/base.gyp:base', 1120 '../base/base.gyp:base',
1121 '../testing/gtest.gyp:gtest', 1121 '../testing/gtest.gyp:gtest',
1122 ], 1122 ],
1123 'msvs_guid': '506F2468-6B1D-48E2-A67C-9D9C6BAC0EC5', 1123 'msvs_guid': '506F2468-6B1D-48E2-A67C-9D9C6BAC0EC5',
1124 'sources': [ 1124 'sources': [
1125 'tools/testserver/run_testserver.cc', 1125 'tools/testserver/run_testserver.cc',
1126 ], 1126 ],
1127 }, 1127 },
1128 { 1128 {
1129 'target_name': 'net_test_support', 1129 'target_name': 'net_test_support',
1130 'type': '<(library)', 1130 'type': 'static_library',
1131 'dependencies': [ 1131 'dependencies': [
1132 'net', 1132 'net',
1133 '../base/base.gyp:base', 1133 '../base/base.gyp:base',
1134 '../base/base.gyp:test_support_base', 1134 '../base/base.gyp:test_support_base',
1135 '../testing/gtest.gyp:gtest', 1135 '../testing/gtest.gyp:gtest',
1136 ], 1136 ],
1137 'sources': [ 1137 'sources': [
1138 'base/cert_test_util.cc', 1138 'base/cert_test_util.cc',
1139 'base/cert_test_util.h', 1139 'base/cert_test_util.h',
1140 'base/cookie_monster_store_test.cc', 1140 'base/cookie_monster_store_test.cc',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 'tools/fetch/http_server_request_info.cc', 1243 'tools/fetch/http_server_request_info.cc',
1244 'tools/fetch/http_server_request_info.h', 1244 'tools/fetch/http_server_request_info.h',
1245 'tools/fetch/http_server_response_info.cc', 1245 'tools/fetch/http_server_response_info.cc',
1246 'tools/fetch/http_server_response_info.h', 1246 'tools/fetch/http_server_response_info.h',
1247 'tools/fetch/http_session.cc', 1247 'tools/fetch/http_session.cc',
1248 'tools/fetch/http_session.h', 1248 'tools/fetch/http_session.h',
1249 ], 1249 ],
1250 }, 1250 },
1251 { 1251 {
1252 'target_name': 'http_server', 1252 'target_name': 'http_server',
1253 'type': '<(library)', 1253 'type': 'static_library',
1254 'dependencies': [ 1254 'dependencies': [
1255 'net', 1255 'net',
1256 '../base/base.gyp:base', 1256 '../base/base.gyp:base',
1257 '../testing/gtest.gyp:gtest', 1257 '../testing/gtest.gyp:gtest',
1258 ], 1258 ],
1259 'msvs_guid': 'FCB894A4-CC6C-48C2-B495-52C80527E9BE', 1259 'msvs_guid': 'FCB894A4-CC6C-48C2-B495-52C80527E9BE',
1260 'sources': [ 1260 'sources': [
1261 'server/http_server.cc', 1261 'server/http_server.cc',
1262 'server/http_server.h', 1262 'server/http_server.h',
1263 'server/http_server_request_info.cc', 1263 'server/http_server_request_info.cc',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 'tools/flip_server/streamer_interface.cc', 1353 'tools/flip_server/streamer_interface.cc',
1354 'tools/flip_server/streamer_interface.h', 1354 'tools/flip_server/streamer_interface.h',
1355 'tools/flip_server/string_piece_utils.h', 1355 'tools/flip_server/string_piece_utils.h',
1356 'tools/flip_server/thread.h', 1356 'tools/flip_server/thread.h',
1357 'tools/flip_server/url_to_filename_encoder.h', 1357 'tools/flip_server/url_to_filename_encoder.h',
1358 'tools/flip_server/url_utilities.h', 1358 'tools/flip_server/url_utilities.h',
1359 ], 1359 ],
1360 }, 1360 },
1361 { 1361 {
1362 'target_name': 'curvecp', 1362 'target_name': 'curvecp',
1363 'type': '<(library)', 1363 'type': 'static_library',
1364 'dependencies': [ 1364 'dependencies': [
1365 '../base/base.gyp:base', 1365 '../base/base.gyp:base',
1366 'net.gyp:net', 1366 'net.gyp:net',
1367 ], 1367 ],
1368 'sources': [ 1368 'sources': [
1369 'curvecp/circular_buffer.cc', 1369 'curvecp/circular_buffer.cc',
1370 'curvecp/circular_buffer.h', 1370 'curvecp/circular_buffer.h',
1371 'curvecp/client_packetizer.cc', 1371 'curvecp/client_packetizer.cc',
1372 'curvecp/client_packetizer.h', 1372 'curvecp/client_packetizer.h',
1373 'curvecp/connection_key.cc', 1373 'curvecp/connection_key.cc',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 ], 1439 ],
1440 }], 1440 }],
1441 ], 1441 ],
1442 } 1442 }
1443 1443
1444 # Local Variables: 1444 # Local Variables:
1445 # tab-width:2 1445 # tab-width:2
1446 # indent-tabs-mode:nil 1446 # indent-tabs-mode:nil
1447 # End: 1447 # End:
1448 # vim: set expandtab tabstop=2 shiftwidth=2: 1448 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « media/media.gyp ('k') | net/third_party/nss/ssl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698