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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 'base/sys_addrinfo.h', | 267 'base/sys_addrinfo.h', |
268 'base/tcp_listen_socket.cc', | 268 'base/tcp_listen_socket.cc', |
269 'base/tcp_listen_socket.h', | 269 'base/tcp_listen_socket.h', |
270 'base/test_data_stream.cc', | 270 'base/test_data_stream.cc', |
271 'base/test_data_stream.h', | 271 'base/test_data_stream.h', |
272 'base/test_root_certs.cc', | 272 'base/test_root_certs.cc', |
273 'base/test_root_certs.h', | 273 'base/test_root_certs.h', |
274 'base/test_root_certs_mac.cc', | 274 'base/test_root_certs_mac.cc', |
275 'base/test_root_certs_nss.cc', | 275 'base/test_root_certs_nss.cc', |
276 'base/test_root_certs_openssl.cc', | 276 'base/test_root_certs_openssl.cc', |
| 277 'base/test_root_certs_android.cc', |
277 'base/test_root_certs_win.cc', | 278 'base/test_root_certs_win.cc', |
278 'base/transport_security_state.cc', | 279 'base/transport_security_state.cc', |
279 'base/transport_security_state.h', | 280 'base/transport_security_state.h', |
280 'base/transport_security_state_static.h', | 281 'base/transport_security_state_static.h', |
281 'base/unix_domain_socket_posix.cc', | 282 'base/unix_domain_socket_posix.cc', |
282 'base/unix_domain_socket_posix.h', | 283 'base/unix_domain_socket_posix.h', |
283 'base/upload_bytes_element_reader.cc', | 284 'base/upload_bytes_element_reader.cc', |
284 'base/upload_bytes_element_reader.h', | 285 'base/upload_bytes_element_reader.h', |
285 'base/upload_data.cc', | 286 'base/upload_data.cc', |
286 'base/upload_data.h', | 287 'base/upload_data.h', |
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1187 'net_java', | 1188 'net_java', |
1188 ], | 1189 ], |
1189 }], | 1190 }], |
1190 [ 'OS == "android"', { | 1191 [ 'OS == "android"', { |
1191 'dependencies': [ | 1192 'dependencies': [ |
1192 '../third_party/openssl/openssl.gyp:openssl', | 1193 '../third_party/openssl/openssl.gyp:openssl', |
1193 'net_jni_headers', | 1194 'net_jni_headers', |
1194 ], | 1195 ], |
1195 'sources!': [ | 1196 'sources!': [ |
1196 'base/openssl_memory_private_key_store.cc', | 1197 'base/openssl_memory_private_key_store.cc', |
| 1198 'base/test_root_certs_openssl.cc', |
1197 ], | 1199 ], |
1198 }, { # else OS! = "android" | 1200 }, { # else OS != "android" |
1199 'defines': [ | 1201 'defines': [ |
1200 # These are the features Android doesn't support. | 1202 # These are the features Android doesn't support. |
1201 'ENABLE_MEDIA_CODEC_THEORA', | 1203 'ENABLE_MEDIA_CODEC_THEORA', |
1202 ], | 1204 ], |
1203 }, | 1205 }, |
1204 ], | 1206 ], |
1205 [ 'OS == "linux"', { | 1207 [ 'OS == "linux"', { |
1206 'dependencies': [ | 1208 'dependencies': [ |
1207 '../build/linux/system.gyp:dbus', | 1209 '../build/linux/system.gyp:dbus', |
1208 '../dbus/dbus.gyp:dbus', | 1210 '../dbus/dbus.gyp:dbus', |
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2362 '--result', '<@(_outputs)', | 2364 '--result', '<@(_outputs)', |
2363 '--isolate', 'net_unittests.isolate', | 2365 '--isolate', 'net_unittests.isolate', |
2364 ], | 2366 ], |
2365 }, | 2367 }, |
2366 ], | 2368 ], |
2367 }, | 2369 }, |
2368 ], | 2370 ], |
2369 }], | 2371 }], |
2370 ], | 2372 ], |
2371 } | 2373 } |
OLD | NEW |