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

Side by Side Diff: BUILD.gn

Issue 350893002: Don't list platform-posix.cc twice on android (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 # 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698