| 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 3943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6033 ] | 6034 ] |
| 6034 deps = [ | 6035 deps = [ |
| 6035 ":net_fuzzer_test_support", | 6036 ":net_fuzzer_test_support", |
| 6036 ":test_support", | 6037 ":test_support", |
| 6037 "//base", | 6038 "//base", |
| 6038 "//net", | 6039 "//net", |
| 6039 ] | 6040 ] |
| 6040 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 6041 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 6041 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 6042 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 6042 } | 6043 } |
| OLD | NEW |