OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 19 matching lines...) Expand all Loading... |
30 'targets': [ | 30 'targets': [ |
31 { | 31 { |
32 'target_name': 'net', | 32 'target_name': 'net', |
33 'type': '<(component)', | 33 'type': '<(component)', |
34 'variables': { 'enable_wexit_time_destructors': 1, }, | 34 'variables': { 'enable_wexit_time_destructors': 1, }, |
35 'dependencies': [ | 35 'dependencies': [ |
36 '../base/base.gyp:base', | 36 '../base/base.gyp:base', |
37 '../base/base.gyp:base_i18n', | 37 '../base/base.gyp:base_i18n', |
38 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 38 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
39 '../build/temp_gyp/googleurl.gyp:googleurl', | 39 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 40 '../crypto/crypto.gyp:crypto', |
40 '../sdch/sdch.gyp:sdch', | 41 '../sdch/sdch.gyp:sdch', |
41 '../third_party/icu/icu.gyp:icui18n', | 42 '../third_party/icu/icu.gyp:icui18n', |
42 '../third_party/icu/icu.gyp:icuuc', | 43 '../third_party/icu/icu.gyp:icuuc', |
43 '../third_party/zlib/zlib.gyp:zlib', | 44 '../third_party/zlib/zlib.gyp:zlib', |
44 'net_resources', | 45 'net_resources', |
45 ], | 46 ], |
46 'sources': [ | 47 'sources': [ |
47 'android/net_jni_registrar.cc', | 48 'android/net_jni_registrar.cc', |
48 'android/net_jni_registrar.h', | 49 'android/net_jni_registrar.h', |
49 'android/network_change_notifier_android.cc', | 50 'android/network_change_notifier_android.cc', |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 ], | 802 ], |
802 'defines': [ | 803 'defines': [ |
803 'NET_IMPLEMENTATION', | 804 'NET_IMPLEMENTATION', |
804 ], | 805 ], |
805 'export_dependent_settings': [ | 806 'export_dependent_settings': [ |
806 '../base/base.gyp:base', | 807 '../base/base.gyp:base', |
807 ], | 808 ], |
808 'conditions': [ | 809 'conditions': [ |
809 ['OS != "ios"', { | 810 ['OS != "ios"', { |
810 'dependencies': [ | 811 'dependencies': [ |
811 # TODO(ios): This is temporary; Move this back to the main | |
812 # dependencies section once crypto builds for iOS. | |
813 '../crypto/crypto.gyp:crypto', | |
814 # The v8 gyp file is not available in the iOS tree. | 812 # The v8 gyp file is not available in the iOS tree. |
815 '../v8/tools/gyp/v8.gyp:v8', | 813 '../v8/tools/gyp/v8.gyp:v8', |
816 ], | 814 ], |
817 }], | 815 }], |
818 ['chromeos==1', { | 816 ['chromeos==1', { |
819 'sources!': [ | 817 'sources!': [ |
820 'base/network_change_notifier_linux.cc', | 818 'base/network_change_notifier_linux.cc', |
821 'base/network_change_notifier_linux.h', | 819 'base/network_change_notifier_linux.h', |
822 'base/network_change_notifier_netlink_linux.cc', | 820 'base/network_change_notifier_netlink_linux.cc', |
823 'base/network_change_notifier_netlink_linux.h', | 821 'base/network_change_notifier_netlink_linux.h', |
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2063 '--result', '<@(_outputs)', | 2061 '--result', '<@(_outputs)', |
2064 '--isolate', 'net_unittests.isolate', | 2062 '--isolate', 'net_unittests.isolate', |
2065 ], | 2063 ], |
2066 }, | 2064 }, |
2067 ], | 2065 ], |
2068 }, | 2066 }, |
2069 ], | 2067 ], |
2070 }], | 2068 }], |
2071 ], | 2069 ], |
2072 } | 2070 } |
OLD | NEW |