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

Unified Diff: BUILD.gn

Issue 548713002: Fix v8's GN v86 build. (Closed) Base URL: https://chromium.googlesource.com/external/v8.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index c8e89ab7853bdcd2bb1a175cb7c4d0b0ef8e59f5..ca4f1a213928863e22b98ff88d74156aefec3dfd 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -907,7 +907,7 @@ source_set("v8_base") {
"src/compiler/ia32/instruction-selector-ia32.cc",
"src/compiler/ia32/linkage-ia32.cc",
"src/ic/ia32/ic-ia32.cc",
- "src/ic/ia32/handler-ia32.cc",
+ "src/ic/ia32/ic-compiler-ia32.cc",
"src/ic/ia32/stub-cache-ia32.cc",
]
} else if (v8_target_arch == "x64") {
@@ -1126,6 +1126,10 @@ source_set("v8_base") {
defines = []
deps = [ ":v8_libbase" ]
+ if (is_win) {
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ cflags = [ "/wd4267" ]
+ }
if (is_linux) {
if (v8_compress_startup_data == "bz2") {
libs += [ "bz2" ]
« 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