OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2091 "websockets/websocket_handshake_stream_create_helper.cc", | 2091 "websockets/websocket_handshake_stream_create_helper.cc", |
2092 "websockets/websocket_handshake_stream_create_helper.h", | 2092 "websockets/websocket_handshake_stream_create_helper.h", |
2093 "websockets/websocket_inflater.cc", | 2093 "websockets/websocket_inflater.cc", |
2094 "websockets/websocket_inflater.h", | 2094 "websockets/websocket_inflater.h", |
2095 "websockets/websocket_stream.cc", | 2095 "websockets/websocket_stream.cc", |
2096 "websockets/websocket_stream.h", | 2096 "websockets/websocket_stream.h", |
2097 ] | 2097 ] |
2098 } | 2098 } |
2099 | 2099 |
2100 # ICU support. | 2100 # ICU support. |
2101 if (use_platform_icu_alternatives) { | 2101 if (use_platform_icu_alternatives && |
| 2102 current_toolchain == default_toolchain) { |
2102 if (is_android) { | 2103 if (is_android) { |
2103 # Use ICU alternative on Android. | 2104 # Use ICU alternative on Android. |
2104 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] | 2105 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
2105 deps += [ ":net_jni_headers" ] | 2106 deps += [ ":net_jni_headers" ] |
2106 } else if (is_ios) { | 2107 } else if (is_ios) { |
2107 # Use ICU alternative on iOS. | 2108 # Use ICU alternative on iOS. |
2108 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] | 2109 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
2109 } else { | 2110 } else { |
2110 assert(false, | 2111 assert(false, |
2111 "ICU alternative is not implemented for platform: " + target_os) | 2112 "ICU alternative is not implemented for platform: " + target_os) |
(...skipping 3962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6074 ] | 6075 ] |
6075 deps = [ | 6076 deps = [ |
6076 ":net_fuzzer_test_support", | 6077 ":net_fuzzer_test_support", |
6077 ":test_support", | 6078 ":test_support", |
6078 "//base", | 6079 "//base", |
6079 "//net", | 6080 "//net", |
6080 ] | 6081 ] |
6081 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6082 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
6082 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6083 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
6083 } | 6084 } |
OLD | NEW |