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 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
979 sources += [ | 979 sources += [ |
980 "src/platform-linux.cc" | 980 "src/platform-linux.cc" |
981 ] | 981 ] |
982 | 982 |
983 libs = [ "rt" ] | 983 libs = [ "rt" ] |
984 if (v8_compress_startup_data == "bz2") { | 984 if (v8_compress_startup_data == "bz2") { |
985 libs += [ "bz2" ] | 985 libs += [ "bz2" ] |
986 } | 986 } |
987 } else if (is_android) { | 987 } else if (is_android) { |
988 defines += [ "CAN_USE_VFP_INSTRUCTIONS" ] | 988 defines += [ "CAN_USE_VFP_INSTRUCTIONS" ] |
989 sources += [ "src/platform-posix.cc" ] | |
990 | 989 |
991 if (build_os == "mac") { | 990 if (build_os == "mac") { |
992 if (current_toolchain == host_toolchain) { | 991 if (current_toolchain == host_toolchain) { |
993 sources += [ "src/platform-macos.cc" ] | 992 sources += [ "src/platform-macos.cc" ] |
994 } else { | 993 } else { |
995 sources += [ "src/platform-linux.cc" ] | 994 sources += [ "src/platform-linux.cc" ] |
996 } | 995 } |
997 } else { | 996 } else { |
998 sources += [ "src/platform-linux.cc" ] | 997 sources += [ "src/platform-linux.cc" ] |
999 if (current_toolchain == host_toolchain) { | 998 if (current_toolchain == host_toolchain) { |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 deps = [ | 1151 deps = [ |
1153 ":v8_base", | 1152 ":v8_base", |
1154 ":v8_nosnapshot", | 1153 ":v8_nosnapshot", |
1155 ] | 1154 ] |
1156 } | 1155 } |
1157 | 1156 |
1158 direct_dependent_configs = [ ":external_config" ] | 1157 direct_dependent_configs = [ ":external_config" ] |
1159 } | 1158 } |
1160 | 1159 |
1161 } | 1160 } |
OLD | NEW |