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

Side by Side Diff: net/net.gyp

Issue 28220: Add some missing files to net.gyp.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: move dependency from net_unittests to net Created 11 years, 9 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 | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'net', 14 'target_name': 'net',
15 'type': 'static_library', 15 'type': 'static_library',
16 'dependencies': [ 16 'dependencies': [
17 '../base/base.gyp:base', 17 '../base/base.gyp:base',
18 '../build/temp_gyp/googleurl.gyp:googleurl', 18 '../build/temp_gyp/googleurl.gyp:googleurl',
19 '../build/temp_gyp/v8.gyp:v8',
19 '../sdch/sdch.gyp:sdch', 20 '../sdch/sdch.gyp:sdch',
20 '../third_party/bzip2/bzip2.gyp:bzip2', 21 '../third_party/bzip2/bzip2.gyp:bzip2',
21 '../third_party/icu38/icu38.gyp:icui18n', 22 '../third_party/icu38/icu38.gyp:icui18n',
22 '../third_party/icu38/icu38.gyp:icuuc', 23 '../third_party/icu38/icu38.gyp:icuuc',
23 '../third_party/modp_b64/modp_b64.gyp:modp_b64', 24 '../third_party/modp_b64/modp_b64.gyp:modp_b64',
24 '../third_party/zlib/zlib.gyp:zlib', 25 '../third_party/zlib/zlib.gyp:zlib',
25 ], 26 ],
26 'sources': [ 27 'sources': [
27 'base/address_list.cc', 28 'base/address_list.cc',
28 'base/address_list.h', 29 'base/address_list.h',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'http/http_transaction.h', 219 'http/http_transaction.h',
219 'http/http_transaction_factory.h', 220 'http/http_transaction_factory.h',
220 'http/http_util.cc', 221 'http/http_util.cc',
221 'http/http_util.h', 222 'http/http_util.h',
222 'http/http_vary_data.cc', 223 'http/http_vary_data.cc',
223 'http/http_vary_data.h', 224 'http/http_vary_data.h',
224 'proxy/proxy_config_service_fixed.h', 225 'proxy/proxy_config_service_fixed.h',
225 'proxy/proxy_config_service_win.cc', 226 'proxy/proxy_config_service_win.cc',
226 'proxy/proxy_config_service_win.h', 227 'proxy/proxy_config_service_win.h',
227 'proxy/proxy_resolver_mac.cc', 228 'proxy/proxy_resolver_mac.cc',
229 'proxy/proxy_resolver_script.h',
230 'proxy/proxy_resolver_v8.cc',
231 'proxy/proxy_resolver_v8.h',
228 'proxy/proxy_resolver_winhttp.cc', 232 'proxy/proxy_resolver_winhttp.cc',
229 'proxy/proxy_resolver_winhttp.h', 233 'proxy/proxy_resolver_winhttp.h',
230 'proxy/proxy_script_fetcher.cc', 234 'proxy/proxy_script_fetcher.cc',
231 'proxy/proxy_script_fetcher.h', 235 'proxy/proxy_script_fetcher.h',
232 'proxy/proxy_server.cc', 236 'proxy/proxy_server.cc',
233 'proxy/proxy_server.h', 237 'proxy/proxy_server.h',
234 'proxy/proxy_service.cc', 238 'proxy/proxy_service.cc',
235 'proxy/proxy_service.h', 239 'proxy/proxy_service.h',
236 'url_request/mime_sniffer_proxy.cc', 240 'url_request/mime_sniffer_proxy.cc',
237 'url_request/mime_sniffer_proxy.h', 241 'url_request/mime_sniffer_proxy.h',
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 'http/http_auth_unittest.cc', 408 'http/http_auth_unittest.cc',
405 'http/http_cache_unittest.cc', 409 'http/http_cache_unittest.cc',
406 'http/http_chunked_decoder_unittest.cc', 410 'http/http_chunked_decoder_unittest.cc',
407 'http/http_network_layer_unittest.cc', 411 'http/http_network_layer_unittest.cc',
408 'http/http_network_transaction_unittest.cc', 412 'http/http_network_transaction_unittest.cc',
409 'http/http_response_headers_unittest.cc', 413 'http/http_response_headers_unittest.cc',
410 'http/http_transaction_unittest.cc', 414 'http/http_transaction_unittest.cc',
411 'http/http_transaction_unittest.h', 415 'http/http_transaction_unittest.h',
412 'http/http_util_unittest.cc', 416 'http/http_util_unittest.cc',
413 'http/http_vary_data_unittest.cc', 417 'http/http_vary_data_unittest.cc',
418 'proxy/proxy_resolver_v8_unittest.cc',
414 'proxy/proxy_script_fetcher_unittest.cc', 419 'proxy/proxy_script_fetcher_unittest.cc',
415 'proxy/proxy_service_unittest.cc', 420 'proxy/proxy_service_unittest.cc',
416 'url_request/url_request_unittest.cc', 421 'url_request/url_request_unittest.cc',
417 'url_request/url_request_unittest.h', 422 'url_request/url_request_unittest.h',
418 ], 423 ],
419 'conditions': [ 424 'conditions': [
420 [ 'OS != "win"', { 425 [ 'OS != "win"', {
421 'sources!': [ 426 'sources!': [
422 'base/wininet_util_unittest.cc', 427 'base/wininet_util_unittest.cc',
423 ], 428 ],
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 # stuff that builds everything underneath Hammer. Just 593 # stuff that builds everything underneath Hammer. Just
589 # put a SCons string in the action, at least for now. 594 # put a SCons string in the action, at least for now.
590 'action': ['${SOURCES[0]}', '${SOURCES[1]}', '$TARGET'], 595 'action': ['${SOURCES[0]}', '${SOURCES[1]}', '$TARGET'],
591 } 596 }
592 ], 597 ],
593 }, 598 },
594 ], 599 ],
595 }], 600 }],
596 ], 601 ],
597 } 602 }
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