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

Side by Side Diff: net/BUILD.gn

Issue 1411283009: Reland Reland Reland Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missed BUILD.gn Created 5 years, 1 month 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
« no previous file with comments | « gin/v8_initializer.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 jni_package = "net/test" 1206 jni_package = "net/test"
1207 } 1207 }
1208 1208
1209 _net_unittests_apk_assets_dir = "$root_out_dir/net_unittests_apk/assets" 1209 _net_unittests_apk_assets_dir = "$root_out_dir/net_unittests_apk/assets"
1210 1210
1211 copy_ex("copy_net_unittests_apk_assets") { 1211 copy_ex("copy_net_unittests_apk_assets") {
1212 clear_dir = true 1212 clear_dir = true
1213 dest = _net_unittests_apk_assets_dir 1213 dest = _net_unittests_apk_assets_dir
1214 1214
1215 if (v8_use_external_startup_data) { 1215 if (v8_use_external_startup_data) {
1216 sources = [ 1216 renaming_sources = v8_external_startup_data_renaming_sources
1217 "$root_out_dir/natives_blob.bin", 1217 renaming_destinations = v8_external_startup_data_renaming_destinations
1218 "$root_out_dir/snapshot_blob.bin",
1219 ]
1220 deps = [ 1218 deps = [
1221 "//v8", 1219 "//v8",
1222 ] 1220 ]
1223 } 1221 }
1224 } 1222 }
1225 } 1223 }
1226 1224
1227 if (is_android || is_linux) { 1225 if (is_android || is_linux) {
1228 executable("disk_cache_memory_test") { 1226 executable("disk_cache_memory_test") {
1229 testonly = true 1227 testonly = true
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
1676 if (enable_websockets) { 1674 if (enable_websockets) {
1677 sources += [ "websockets/websocket_frame_perftest.cc" ] 1675 sources += [ "websockets/websocket_frame_perftest.cc" ]
1678 } 1676 }
1679 1677
1680 if (use_v8_in_net) { 1678 if (use_v8_in_net) {
1681 deps += [ ":net_with_v8" ] 1679 deps += [ ":net_with_v8" ]
1682 } else { 1680 } else {
1683 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1681 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1684 } 1682 }
1685 } 1683 }
OLDNEW
« no previous file with comments | « gin/v8_initializer.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698