| 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 2066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2077 "websockets/websocket_handshake_stream_create_helper.cc", | 2077 "websockets/websocket_handshake_stream_create_helper.cc", |
| 2078 "websockets/websocket_handshake_stream_create_helper.h", | 2078 "websockets/websocket_handshake_stream_create_helper.h", |
| 2079 "websockets/websocket_inflater.cc", | 2079 "websockets/websocket_inflater.cc", |
| 2080 "websockets/websocket_inflater.h", | 2080 "websockets/websocket_inflater.h", |
| 2081 "websockets/websocket_stream.cc", | 2081 "websockets/websocket_stream.cc", |
| 2082 "websockets/websocket_stream.h", | 2082 "websockets/websocket_stream.h", |
| 2083 ] | 2083 ] |
| 2084 } | 2084 } |
| 2085 | 2085 |
| 2086 # ICU support. | 2086 # ICU support. |
| 2087 if (use_platform_icu_alternatives) { | 2087 if (use_platform_icu_alternatives && |
| 2088 current_toolchain == default_toolchain) { |
| 2088 if (is_android) { | 2089 if (is_android) { |
| 2089 # Use ICU alternative on Android. | 2090 # Use ICU alternative on Android. |
| 2090 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] | 2091 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
| 2091 deps += [ ":net_jni_headers" ] | 2092 deps += [ ":net_jni_headers" ] |
| 2092 } else if (is_ios) { | 2093 } else if (is_ios) { |
| 2093 # Use ICU alternative on iOS. | 2094 # Use ICU alternative on iOS. |
| 2094 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] | 2095 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
| 2095 } else { | 2096 } else { |
| 2096 assert(false, | 2097 assert(false, |
| 2097 "ICU alternative is not implemented for platform: " + target_os) | 2098 "ICU alternative is not implemented for platform: " + target_os) |
| (...skipping 3725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5823 ] | 5824 ] |
| 5824 deps = [ | 5825 deps = [ |
| 5825 ":net_fuzzer_test_support", | 5826 ":net_fuzzer_test_support", |
| 5826 ":test_support", | 5827 ":test_support", |
| 5827 "//base", | 5828 "//base", |
| 5828 "//net", | 5829 "//net", |
| 5829 ] | 5830 ] |
| 5830 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5831 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5831 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5832 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5832 } | 5833 } |
| OLD | NEW |