| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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_base', | 11 'target_name': 'net_base', |
| 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/icu/icu.gyp:icui18n', | 18 '../third_party/icu/icu.gyp:icui18n', |
| 19 '../third_party/icu/icu.gyp:icuuc', | 19 '../third_party/icu/icu.gyp:icuuc', |
| 20 '../third_party/zlib/zlib.gyp:zlib', | 20 '../third_party/zlib/zlib.gyp:zlib', |
| 21 'net_resources', | 21 'net_resources', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'base/address_family.h', | 24 'base/address_family.h', |
| 25 'base/address_list.cc', | 25 'base/address_list.cc', |
| 26 'base/address_list.h', | 26 'base/address_list.h', |
| 27 'base/auth.h', | 27 'base/auth.h', |
| 28 'base/cache_type.h', | 28 'base/cache_type.h', |
| 29 'base/capturing_net_log.cc', |
| 30 'base/capturing_net_log.h', |
| 29 'base/cert_database.h', | 31 'base/cert_database.h', |
| 30 'base/cert_database_mac.cc', | 32 'base/cert_database_mac.cc', |
| 31 'base/cert_database_nss.cc', | 33 'base/cert_database_nss.cc', |
| 32 'base/cert_database_win.cc', | 34 'base/cert_database_win.cc', |
| 33 'base/cert_status_flags.cc', | 35 'base/cert_status_flags.cc', |
| 34 'base/cert_status_flags.h', | 36 'base/cert_status_flags.h', |
| 35 'base/cert_verifier.cc', | 37 'base/cert_verifier.cc', |
| 36 'base/cert_verifier.h', | 38 'base/cert_verifier.h', |
| 37 'base/cert_verify_result.h', | 39 'base/cert_verify_result.h', |
| 38 'base/completion_callback.h', | 40 'base/completion_callback.h', |
| (...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 ], | 1025 ], |
| 1024 }], | 1026 }], |
| 1025 ], | 1027 ], |
| 1026 } | 1028 } |
| 1027 | 1029 |
| 1028 # Local Variables: | 1030 # Local Variables: |
| 1029 # tab-width:2 | 1031 # tab-width:2 |
| 1030 # indent-tabs-mode:nil | 1032 # indent-tabs-mode:nil |
| 1031 # End: | 1033 # End: |
| 1032 # vim: set expandtab tabstop=2 shiftwidth=2: | 1034 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |