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 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2069 "websockets/websocket_handshake_stream_create_helper.cc", | 2069 "websockets/websocket_handshake_stream_create_helper.cc", |
2070 "websockets/websocket_handshake_stream_create_helper.h", | 2070 "websockets/websocket_handshake_stream_create_helper.h", |
2071 "websockets/websocket_inflater.cc", | 2071 "websockets/websocket_inflater.cc", |
2072 "websockets/websocket_inflater.h", | 2072 "websockets/websocket_inflater.h", |
2073 "websockets/websocket_stream.cc", | 2073 "websockets/websocket_stream.cc", |
2074 "websockets/websocket_stream.h", | 2074 "websockets/websocket_stream.h", |
2075 ] | 2075 ] |
2076 } | 2076 } |
2077 | 2077 |
2078 # ICU support. | 2078 # ICU support. |
2079 if (use_platform_icu_alternatives) { | 2079 if (use_platform_icu_alternatives && |
| 2080 current_toolchain == default_toolchain) { |
2080 if (is_android) { | 2081 if (is_android) { |
2081 # Use ICU alternative on Android. | 2082 # Use ICU alternative on Android. |
2082 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] | 2083 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
2083 deps += [ ":net_jni_headers" ] | 2084 deps += [ ":net_jni_headers" ] |
2084 } else if (is_ios) { | 2085 } else if (is_ios) { |
2085 # Use ICU alternative on iOS. | 2086 # Use ICU alternative on iOS. |
2086 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] | 2087 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
2087 } else { | 2088 } else { |
2088 assert(false, | 2089 assert(false, |
2089 "ICU alternative is not implemented for platform: " + target_os) | 2090 "ICU alternative is not implemented for platform: " + target_os) |
(...skipping 3844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5934 ] | 5935 ] |
5935 deps = [ | 5936 deps = [ |
5936 ":net_fuzzer_test_support", | 5937 ":net_fuzzer_test_support", |
5937 ":test_support", | 5938 ":test_support", |
5938 "//base", | 5939 "//base", |
5939 "//net", | 5940 "//net", |
5940 ] | 5941 ] |
5941 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5942 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
5942 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5943 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
5943 } | 5944 } |
OLD | NEW |