OLD | NEW |
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': '<(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 '../build/temp_gyp/v8.gyp:v8', |
20 '../sdch/sdch.gyp:sdch', | 20 '../sdch/sdch.gyp:sdch', |
21 '../third_party/bzip2/bzip2.gyp:bzip2', | 21 '../third_party/bzip2/bzip2.gyp:bzip2', |
22 '../third_party/icu38/icu38.gyp:icui18n', | 22 '../third_party/icu38/icu38.gyp:icui18n', |
23 '../third_party/icu38/icu38.gyp:icuuc', | 23 '../third_party/icu38/icu38.gyp:icuuc', |
24 '../third_party/modp_b64/modp_b64.gyp:modp_b64', | 24 '../third_party/modp_b64/modp_b64.gyp:modp_b64', |
25 '../third_party/zlib/zlib.gyp:zlib', | 25 '../third_party/zlib/zlib.gyp:zlib', |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 'net_test_support', | 529 'net_test_support', |
530 '../base/base.gyp:base', | 530 '../base/base.gyp:base', |
531 ], | 531 ], |
532 'msvs_guid': 'B0EE0599-2913-46A0-A847-A3EC813658D3', | 532 'msvs_guid': 'B0EE0599-2913-46A0-A847-A3EC813658D3', |
533 'sources': [ | 533 'sources': [ |
534 'tools/crash_cache/crash_cache.cc', | 534 'tools/crash_cache/crash_cache.cc', |
535 ], | 535 ], |
536 }, | 536 }, |
537 { | 537 { |
538 'target_name': 'net_test_support', | 538 'target_name': 'net_test_support', |
539 'type': 'static_library', | 539 'type': '<(library)', |
540 'dependencies': [ | 540 'dependencies': [ |
541 'net', | 541 'net', |
542 '../base/base.gyp:base', | 542 '../base/base.gyp:base', |
543 ], | 543 ], |
544 'sources': [ | 544 'sources': [ |
545 'disk_cache/disk_cache_test_util.cc', | 545 'disk_cache/disk_cache_test_util.cc', |
546 'disk_cache/disk_cache_test_util.h', | 546 'disk_cache/disk_cache_test_util.h', |
547 ], | 547 ], |
548 }, | 548 }, |
549 { | 549 { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 'sources': [ | 591 'sources': [ |
592 'tools/dump_cache/dump_cache.cc', | 592 'tools/dump_cache/dump_cache.cc', |
593 'tools/dump_cache/dump_files.cc', | 593 'tools/dump_cache/dump_files.cc', |
594 'tools/dump_cache/upgrade.cc', | 594 'tools/dump_cache/upgrade.cc', |
595 ], | 595 ], |
596 }, | 596 }, |
597 ], | 597 ], |
598 }], | 598 }], |
599 ], | 599 ], |
600 } | 600 } |
OLD | NEW |