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 2052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2063 "websockets/websocket_handshake_stream_create_helper.cc", | 2063 "websockets/websocket_handshake_stream_create_helper.cc", |
2064 "websockets/websocket_handshake_stream_create_helper.h", | 2064 "websockets/websocket_handshake_stream_create_helper.h", |
2065 "websockets/websocket_inflater.cc", | 2065 "websockets/websocket_inflater.cc", |
2066 "websockets/websocket_inflater.h", | 2066 "websockets/websocket_inflater.h", |
2067 "websockets/websocket_stream.cc", | 2067 "websockets/websocket_stream.cc", |
2068 "websockets/websocket_stream.h", | 2068 "websockets/websocket_stream.h", |
2069 ] | 2069 ] |
2070 } | 2070 } |
2071 | 2071 |
2072 # ICU support. | 2072 # ICU support. |
2073 if (use_platform_icu_alternatives) { | 2073 if (use_platform_icu_alternatives && |
| 2074 current_toolchain == default_toolchain) { |
2074 if (is_android) { | 2075 if (is_android) { |
2075 # Use ICU alternative on Android. | 2076 # Use ICU alternative on Android. |
2076 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] | 2077 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
2077 deps += [ ":net_jni_headers" ] | 2078 deps += [ ":net_jni_headers" ] |
2078 } else if (is_ios) { | 2079 } else if (is_ios) { |
2079 # Use ICU alternative on iOS. | 2080 # Use ICU alternative on iOS. |
2080 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] | 2081 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
2081 } else { | 2082 } else { |
2082 assert(false, | 2083 assert(false, |
2083 "ICU alternative is not implemented for platform: " + target_os) | 2084 "ICU alternative is not implemented for platform: " + target_os) |
(...skipping 3785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5869 ] | 5870 ] |
5870 deps = [ | 5871 deps = [ |
5871 ":net_fuzzer_test_support", | 5872 ":net_fuzzer_test_support", |
5872 ":test_support", | 5873 ":test_support", |
5873 "//base", | 5874 "//base", |
5874 "//net", | 5875 "//net", |
5875 ] | 5876 ] |
5876 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5877 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
5877 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5878 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
5878 } | 5879 } |
OLD | NEW |