| 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 2062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2073 "websockets/websocket_handshake_stream_create_helper.cc", | 2073 "websockets/websocket_handshake_stream_create_helper.cc", |
| 2074 "websockets/websocket_handshake_stream_create_helper.h", | 2074 "websockets/websocket_handshake_stream_create_helper.h", |
| 2075 "websockets/websocket_inflater.cc", | 2075 "websockets/websocket_inflater.cc", |
| 2076 "websockets/websocket_inflater.h", | 2076 "websockets/websocket_inflater.h", |
| 2077 "websockets/websocket_stream.cc", | 2077 "websockets/websocket_stream.cc", |
| 2078 "websockets/websocket_stream.h", | 2078 "websockets/websocket_stream.h", |
| 2079 ] | 2079 ] |
| 2080 } | 2080 } |
| 2081 | 2081 |
| 2082 # ICU support. | 2082 # ICU support. |
| 2083 if (use_platform_icu_alternatives) { | 2083 if (use_platform_icu_alternatives && |
| 2084 current_toolchain == default_toolchain) { |
| 2084 if (is_android) { | 2085 if (is_android) { |
| 2085 # Use ICU alternative on Android. | 2086 # Use ICU alternative on Android. |
| 2086 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] | 2087 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] |
| 2087 deps += [ ":net_jni_headers" ] | 2088 deps += [ ":net_jni_headers" ] |
| 2088 } else if (is_ios) { | 2089 } else if (is_ios) { |
| 2089 # Use ICU alternative on iOS. | 2090 # Use ICU alternative on iOS. |
| 2090 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] | 2091 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] |
| 2091 } else { | 2092 } else { |
| 2092 assert(false, | 2093 assert(false, |
| 2093 "ICU alternative is not implemented for platform: " + target_os) | 2094 "ICU alternative is not implemented for platform: " + target_os) |
| (...skipping 3722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5816 ] | 5817 ] |
| 5817 deps = [ | 5818 deps = [ |
| 5818 ":net_fuzzer_test_support", | 5819 ":net_fuzzer_test_support", |
| 5819 ":test_support", | 5820 ":test_support", |
| 5820 "//base", | 5821 "//base", |
| 5821 "//net", | 5822 "//net", |
| 5822 ] | 5823 ] |
| 5823 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5824 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5824 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5825 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5825 } | 5826 } |
| OLD | NEW |