| 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': '<(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 # TODO: various targets end up using |
| 22 # testing::internal::AssertHelper through references here. |
| 23 # Good candidate for refactoring. |
| 24 '../testing/gtest.gyp:gtest', |
| 21 '../third_party/bzip2/bzip2.gyp:bzip2', | 25 '../third_party/bzip2/bzip2.gyp:bzip2', |
| 22 '../third_party/icu38/icu38.gyp:icui18n', | 26 '../third_party/icu38/icu38.gyp:icui18n', |
| 23 '../third_party/icu38/icu38.gyp:icuuc', | 27 '../third_party/icu38/icu38.gyp:icuuc', |
| 24 '../third_party/modp_b64/modp_b64.gyp:modp_b64', | 28 '../third_party/modp_b64/modp_b64.gyp:modp_b64', |
| 25 '../third_party/zlib/zlib.gyp:zlib', | 29 '../third_party/zlib/zlib.gyp:zlib', |
| 26 'net_resources', | 30 'net_resources', |
| 27 ], | 31 ], |
| 28 'msvs_guid': '326E9795-E760-410A-B69A-3F79DB3F5243', | 32 'msvs_guid': '326E9795-E760-410A-B69A-3F79DB3F5243', |
| 29 'sources': [ | 33 'sources': [ |
| 30 'base/address_list.cc', | 34 'base/address_list.cc', |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 'sources': [ | 610 'sources': [ |
| 607 'tools/dump_cache/dump_cache.cc', | 611 'tools/dump_cache/dump_cache.cc', |
| 608 'tools/dump_cache/dump_files.cc', | 612 'tools/dump_cache/dump_files.cc', |
| 609 'tools/dump_cache/upgrade.cc', | 613 'tools/dump_cache/upgrade.cc', |
| 610 ], | 614 ], |
| 611 }, | 615 }, |
| 612 ], | 616 ], |
| 613 }], | 617 }], |
| 614 ], | 618 ], |
| 615 } | 619 } |
| OLD | NEW |