OLD | NEW |
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 # TODO(jochen): These will need to be user-settable to support standalone V8 | 5 # TODO(jochen): These will need to be user-settable to support standalone V8 |
6 # builds. | 6 # builds. |
7 v8_compress_startup_data = "off" | 7 v8_compress_startup_data = "off" |
8 v8_deprecation_warnings = false | 8 v8_deprecation_warnings = false |
9 v8_enable_disassembler = false | 9 v8_enable_disassembler = false |
10 v8_enable_gdbjit = false | 10 v8_enable_gdbjit = false |
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 "src/base/atomicops_internals_mips_gcc.h", | 969 "src/base/atomicops_internals_mips_gcc.h", |
970 "src/base/atomicops_internals_tsan.h", | 970 "src/base/atomicops_internals_tsan.h", |
971 "src/base/atomicops_internals_x86_gcc.cc", | 971 "src/base/atomicops_internals_x86_gcc.cc", |
972 "src/base/atomicops_internals_x86_gcc.h", | 972 "src/base/atomicops_internals_x86_gcc.h", |
973 "src/base/atomicops_internals_x86_msvc.h", | 973 "src/base/atomicops_internals_x86_msvc.h", |
974 "src/base/build_config.h", | 974 "src/base/build_config.h", |
975 "src/base/lazy-instance.h", | 975 "src/base/lazy-instance.h", |
976 "src/base/macros.h", | 976 "src/base/macros.h", |
977 "src/base/once.cc", | 977 "src/base/once.cc", |
978 "src/base/once.h", | 978 "src/base/once.h", |
| 979 "src/base/safe_conversions.h", |
| 980 "src/base/safe_conversions_impl.h", |
| 981 "src/base/safe_math.h", |
| 982 "src/base/safe_math_impl.h", |
979 "src/base/win32-headers.h", | 983 "src/base/win32-headers.h", |
980 ] | 984 ] |
981 | 985 |
982 configs -= [ "//build/config/compiler:chromium_code" ] | 986 configs -= [ "//build/config/compiler:chromium_code" ] |
983 configs += [ "//build/config/compiler:no_chromium_code" ] | 987 configs += [ "//build/config/compiler:no_chromium_code" ] |
984 configs += [ ":internal_config", ":features", ":toolchain" ] | 988 configs += [ ":internal_config", ":features", ":toolchain" ] |
985 } | 989 } |
986 | 990 |
987 ############################################################################### | 991 ############################################################################### |
988 # Executables | 992 # Executables |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 deps = [ | 1061 deps = [ |
1058 ":v8_base", | 1062 ":v8_base", |
1059 ":v8_nosnapshot", | 1063 ":v8_nosnapshot", |
1060 ] | 1064 ] |
1061 } | 1065 } |
1062 | 1066 |
1063 direct_dependent_configs = [ ":external_config" ] | 1067 direct_dependent_configs = [ ":external_config" ] |
1064 } | 1068 } |
1065 | 1069 |
1066 } | 1070 } |
OLD | NEW |