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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 ['include', '^base/registry_controlled_domains/registry_controlled
_domain\\.'], | 1060 ['include', '^base/registry_controlled_domains/registry_controlled
_domain\\.'], |
1061 ['include', '^http/http_byte_range\\.'], | 1061 ['include', '^http/http_byte_range\\.'], |
1062 ['include', '^http/http_content_disposition\\.'], | 1062 ['include', '^http/http_content_disposition\\.'], |
1063 ['include', '^http/http_util\\.'], | 1063 ['include', '^http/http_util\\.'], |
1064 ['include', '^http/http_util_icu\\.cc$'], | 1064 ['include', '^http/http_util_icu\\.cc$'], |
1065 ['include', '^http/http_version\\.h$'], | 1065 ['include', '^http/http_version\\.h$'], |
1066 ], | 1066 ], |
1067 }, | 1067 }, |
1068 ], | 1068 ], |
1069 [ 'OS == "android"', { | 1069 [ 'OS == "android"', { |
1070 'defines': [ | |
1071 # Android can shut down the app at any time, so the cookies must | |
1072 # be saved to permanent storage. | |
1073 'ENABLE_PERSISTENT_SESSION_COOKIES' | |
1074 ], | |
1075 'dependencies': [ | 1070 'dependencies': [ |
1076 '../third_party/openssl/openssl.gyp:openssl', | 1071 '../third_party/openssl/openssl.gyp:openssl', |
1077 'net_jni_headers', | 1072 'net_jni_headers', |
1078 ], | 1073 ], |
1079 'sources!': [ | 1074 'sources!': [ |
1080 'base/openssl_memory_private_key_store.cc', | 1075 'base/openssl_memory_private_key_store.cc', |
1081 ], | 1076 ], |
1082 }, { # else OS! = "android" | 1077 }, { # else OS! = "android" |
1083 'defines': [ | 1078 'defines': [ |
1084 # These are the features Android doesn't support. | 1079 # These are the features Android doesn't support. |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1472 ], | 1467 ], |
1473 }], | 1468 }], |
1474 [ 'OS == "linux"', { | 1469 [ 'OS == "linux"', { |
1475 'dependencies': [ | 1470 'dependencies': [ |
1476 '../build/linux/system.gyp:dbus', | 1471 '../build/linux/system.gyp:dbus', |
1477 '../dbus/dbus.gyp:dbus_test_support', | 1472 '../dbus/dbus.gyp:dbus_test_support', |
1478 ], | 1473 ], |
1479 }, | 1474 }, |
1480 ], | 1475 ], |
1481 [ 'OS == "android"', { | 1476 [ 'OS == "android"', { |
1482 'defines': [ | |
1483 # Android can shut down our app at any time, so we persist session
cookies. | |
1484 'ENABLE_PERSISTENT_SESSION_COOKIES' | |
1485 ], | |
1486 'dependencies': [ | 1477 'dependencies': [ |
1487 '../third_party/openssl/openssl.gyp:openssl', | 1478 '../third_party/openssl/openssl.gyp:openssl', |
1488 ], | 1479 ], |
1489 'sources!': [ | 1480 'sources!': [ |
1490 'dns/dns_config_service_posix_unittest.cc', | 1481 'dns/dns_config_service_posix_unittest.cc', |
1491 ], | 1482 ], |
1492 }, | 1483 }, |
1493 ], | 1484 ], |
1494 ['OS == "android" and gtest_target_type == "shared_library"', { | 1485 ['OS == "android" and gtest_target_type == "shared_library"', { |
1495 'dependencies': [ | 1486 'dependencies': [ |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2072 '--result', '<@(_outputs)', | 2063 '--result', '<@(_outputs)', |
2073 '--isolate', 'net_unittests.isolate', | 2064 '--isolate', 'net_unittests.isolate', |
2074 ], | 2065 ], |
2075 }, | 2066 }, |
2076 ], | 2067 ], |
2077 }, | 2068 }, |
2078 ], | 2069 ], |
2079 }], | 2070 }], |
2080 ], | 2071 ], |
2081 } | 2072 } |
OLD | NEW |