Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: net/BUILD.gn

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for nits and libc fix? Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2089 matching lines...) Expand 10 before | Expand all | Expand 10 after
2100 "websockets/websocket_handshake_stream_create_helper.cc", 2100 "websockets/websocket_handshake_stream_create_helper.cc",
2101 "websockets/websocket_handshake_stream_create_helper.h", 2101 "websockets/websocket_handshake_stream_create_helper.h",
2102 "websockets/websocket_inflater.cc", 2102 "websockets/websocket_inflater.cc",
2103 "websockets/websocket_inflater.h", 2103 "websockets/websocket_inflater.h",
2104 "websockets/websocket_stream.cc", 2104 "websockets/websocket_stream.cc",
2105 "websockets/websocket_stream.h", 2105 "websockets/websocket_stream.h",
2106 ] 2106 ]
2107 } 2107 }
2108 2108
2109 # ICU support. 2109 # ICU support.
2110 if (use_platform_icu_alternatives) { 2110 if (use_platform_icu_alternatives &&
2111 current_toolchain == default_toolchain) {
2111 if (is_android) { 2112 if (is_android) {
2112 # Use ICU alternative on Android. 2113 # Use ICU alternative on Android.
2113 sources += [ "base/net_string_util_icu_alternatives_android.cc" ] 2114 sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
2114 deps += [ ":net_jni_headers" ] 2115 deps += [ ":net_jni_headers" ]
2115 } else if (is_ios) { 2116 } else if (is_ios) {
2116 # Use ICU alternative on iOS. 2117 # Use ICU alternative on iOS.
2117 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ] 2118 sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
2118 } else { 2119 } else {
2119 assert(false, 2120 assert(false,
2120 "ICU alternative is not implemented for platform: " + target_os) 2121 "ICU alternative is not implemented for platform: " + target_os)
(...skipping 3962 matching lines...) Expand 10 before | Expand all | Expand 10 after
6083 ] 6084 ]
6084 deps = [ 6085 deps = [
6085 ":net_fuzzer_test_support", 6086 ":net_fuzzer_test_support",
6086 ":test_support", 6087 ":test_support",
6087 "//base", 6088 "//base",
6088 "//net", 6089 "//net",
6089 ] 6090 ]
6090 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6091 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6091 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6092 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6092 } 6093 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698