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 2061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2072 "websockets/websocket_handshake_stream_create_helper.cc", | 2072 "websockets/websocket_handshake_stream_create_helper.cc", |
2073 "websockets/websocket_handshake_stream_create_helper.h", | 2073 "websockets/websocket_handshake_stream_create_helper.h", |
2074 "websockets/websocket_inflater.cc", | 2074 "websockets/websocket_inflater.cc", |
2075 "websockets/websocket_inflater.h", | 2075 "websockets/websocket_inflater.h", |
2076 "websockets/websocket_stream.cc", | 2076 "websockets/websocket_stream.cc", |
2077 "websockets/websocket_stream.h", | 2077 "websockets/websocket_stream.h", |
2078 ] | 2078 ] |
2079 } | 2079 } |
2080 | 2080 |
2081 # ICU support. | 2081 # ICU support. |
2082 if (use_platform_icu_alternatives) { | 2082 if (use_platform_icu_alternatives && |
| 2083 current_toolchain == default_toolchain) { |
2083 if (is_android) { | 2084 if (is_android) { |
2084 # Use ICU alternative on Android. | 2085 # Use ICU alternative on Android. |
2085 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] | 2086 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
2086 deps += [ ":net_jni_headers" ] | 2087 deps += [ ":net_jni_headers" ] |
2087 } else if (is_ios) { | 2088 } else if (is_ios) { |
2088 # Use ICU alternative on iOS. | 2089 # Use ICU alternative on iOS. |
2089 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] | 2090 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
2090 } else { | 2091 } else { |
2091 assert(false, | 2092 assert(false, |
2092 "ICU alternative is not implemented for platform: " + target_os) | 2093 "ICU alternative is not implemented for platform: " + target_os) |
(...skipping 3852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5945 ] | 5946 ] |
5946 deps = [ | 5947 deps = [ |
5947 ":net_fuzzer_test_support", | 5948 ":net_fuzzer_test_support", |
5948 ":test_support", | 5949 ":test_support", |
5949 "//base", | 5950 "//base", |
5950 "//net", | 5951 "//net", |
5951 ] | 5952 ] |
5952 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5953 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
5953 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5954 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
5954 } | 5955 } |
OLD | NEW |