| 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'net', | 11 'target_name': 'net', |
| 12 'type': '<(library)', | 12 'type': '<(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 '../build/temp_gyp/googleurl.gyp:googleurl', | 16 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 17 '../sdch/sdch.gyp:sdch', | 17 '../sdch/sdch.gyp:sdch', |
| 18 '../third_party/bzip2/bzip2.gyp:bzip2', | 18 '../third_party/bzip2/bzip2.gyp:bzip2', |
| 19 '../third_party/icu/icu.gyp:icui18n', | 19 '../third_party/icu/icu.gyp:icui18n', |
| 20 '../third_party/icu/icu.gyp:icuuc', | 20 '../third_party/icu/icu.gyp:icuuc', |
| 21 '../third_party/modp_b64/modp_b64.gyp:modp_b64', | 21 '../third_party/modp_b64/modp_b64.gyp:modp_b64', |
| 22 '../third_party/zlib/zlib.gyp:zlib', | 22 '../third_party/zlib/zlib.gyp:zlib', |
| 23 'net_resources', | 23 'net_resources', |
| 24 ], | 24 ], |
| 25 'msvs_guid': '326E9795-E760-410A-B69A-3F79DB3F5243', | 25 'msvs_guid': '326E9795-E760-410A-B69A-3F79DB3F5243', |
| 26 'sources': [ | 26 'sources': [ |
| 27 'base/address_family.h', |
| 27 'base/address_list.cc', | 28 'base/address_list.cc', |
| 28 'base/address_list.h', | 29 'base/address_list.h', |
| 29 'base/auth.h', | 30 'base/auth.h', |
| 30 'base/base64.cc', | 31 'base/base64.cc', |
| 31 'base/base64.h', | 32 'base/base64.h', |
| 32 'base/bzip2_filter.cc', | 33 'base/bzip2_filter.cc', |
| 33 'base/bzip2_filter.h', | 34 'base/bzip2_filter.h', |
| 34 'base/cache_type.h', | 35 'base/cache_type.h', |
| 35 'base/cert_status_flags.cc', | 36 'base/cert_status_flags.cc', |
| 36 'base/cert_status_flags.h', | 37 'base/cert_status_flags.h', |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 ], | 769 ], |
| 769 }], | 770 }], |
| 770 ], | 771 ], |
| 771 } | 772 } |
| 772 | 773 |
| 773 # Local Variables: | 774 # Local Variables: |
| 774 # tab-width:2 | 775 # tab-width:2 |
| 775 # indent-tabs-mode:nil | 776 # indent-tabs-mode:nil |
| 776 # End: | 777 # End: |
| 777 # vim: set expandtab tabstop=2 shiftwidth=2: | 778 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |