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

Side by Side Diff: BUILD.gn

Issue 2083453002: [builtins] Introduce proper Float64Tan operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | src/assembler.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 "src/splay-tree.h", 1418 "src/splay-tree.h",
1419 "src/startup-data-util.cc", 1419 "src/startup-data-util.cc",
1420 "src/startup-data-util.h", 1420 "src/startup-data-util.h",
1421 "src/string-builder.cc", 1421 "src/string-builder.cc",
1422 "src/string-builder.h", 1422 "src/string-builder.h",
1423 "src/string-search.h", 1423 "src/string-search.h",
1424 "src/string-stream.cc", 1424 "src/string-stream.cc",
1425 "src/string-stream.h", 1425 "src/string-stream.h",
1426 "src/strtod.cc", 1426 "src/strtod.cc",
1427 "src/strtod.h", 1427 "src/strtod.h",
1428 "src/third_party/fdlibm/fdlibm.cc",
1429 "src/third_party/fdlibm/fdlibm.h",
1430 "src/tracing/trace-event.cc", 1428 "src/tracing/trace-event.cc",
1431 "src/tracing/trace-event.h", 1429 "src/tracing/trace-event.h",
1432 "src/transitions-inl.h", 1430 "src/transitions-inl.h",
1433 "src/transitions.cc", 1431 "src/transitions.cc",
1434 "src/transitions.h", 1432 "src/transitions.h",
1435 "src/type-cache.cc", 1433 "src/type-cache.cc",
1436 "src/type-cache.h", 1434 "src/type-cache.h",
1437 "src/type-feedback-vector-inl.h", 1435 "src/type-feedback-vector-inl.h",
1438 "src/type-feedback-vector.cc", 1436 "src/type-feedback-vector.cc",
1439 "src/type-feedback-vector.h", 1437 "src/type-feedback-vector.h",
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
2016 # 2014 #
2017 2015
2018 if (current_toolchain == v8_snapshot_toolchain) { 2016 if (current_toolchain == v8_snapshot_toolchain) {
2019 v8_executable("mksnapshot") { 2017 v8_executable("mksnapshot") {
2020 visibility = [ ":*" ] # Only targets in this file can depend on this. 2018 visibility = [ ":*" ] # Only targets in this file can depend on this.
2021 2019
2022 sources = [ 2020 sources = [
2023 "src/snapshot/mksnapshot.cc", 2021 "src/snapshot/mksnapshot.cc",
2024 ] 2022 ]
2025 2023
2026 configs = [ 2024 configs = [ ":internal_config" ]
2027 ":internal_config",
2028 ]
2029 2025
2030 deps = [ 2026 deps = [
2031 ":v8_base", 2027 ":v8_base",
2032 ":v8_libplatform", 2028 ":v8_libplatform",
2033 ":v8_nosnapshot", 2029 ":v8_nosnapshot",
2034 "//build/config/sanitizers:deps", 2030 "//build/config/sanitizers:deps",
2035 "//build/win:default_exe_manifest", 2031 "//build/win:default_exe_manifest",
2036 ] 2032 ]
2037 } 2033 }
2038 } 2034 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
2074 v8_component("v8") { 2070 v8_component("v8") {
2075 sources = [ 2071 sources = [
2076 "src/v8dll-main.cc", 2072 "src/v8dll-main.cc",
2077 ] 2073 ]
2078 2074
2079 public_deps = [ 2075 public_deps = [
2080 ":v8_base", 2076 ":v8_base",
2081 ":v8_maybe_snapshot", 2077 ":v8_maybe_snapshot",
2082 ] 2078 ]
2083 2079
2084 configs = [ 2080 configs = [ ":internal_config" ]
2085 ":internal_config",
2086 ]
2087 2081
2088 public_configs = [ ":external_config" ] 2082 public_configs = [ ":external_config" ]
2089 } 2083 }
2090 } else { 2084 } else {
2091 group("v8") { 2085 group("v8") {
2092 public_deps = [ 2086 public_deps = [
2093 ":v8_base", 2087 ":v8_base",
2094 ":v8_maybe_snapshot", 2088 ":v8_maybe_snapshot",
2095 ] 2089 ]
2096 public_configs = [ ":external_config" ] 2090 public_configs = [ ":external_config" ]
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
2249 2243
2250 deps = [ 2244 deps = [
2251 ":fuzzer_support", 2245 ":fuzzer_support",
2252 ] 2246 ]
2253 2247
2254 configs = [ ":internal_config" ] 2248 configs = [ ":internal_config" ]
2255 } 2249 }
2256 2250
2257 v8_fuzzer("wasm_asmjs_fuzzer") { 2251 v8_fuzzer("wasm_asmjs_fuzzer") {
2258 } 2252 }
OLDNEW
« no previous file with comments | « no previous file | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698