From ce947a43925a24e1662a8847ebe593d2b7a3375f Mon Sep 17 00:00:00 2001 From: "mstarzinger@chromium.org" Date: Wed, 11 Jun 2014 09:42:48 +0000 Subject: [PATCH] Fix typos in BUILD.gn source lists "foo,cc" is not the same as "foo.cc" R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/326193002 Patch from James Robinson . git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21765 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index de95d4e..a281a91 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -901,7 +901,7 @@ source_set("v8_base") { } } else if (is_android) { defines += [ "CAN_USE_VFP_INSTRUCTIONS" ] - sources += [ "src/platform-posix,cc" ] + sources += [ "src/platform-posix.cc" ] if (build_os == "mac") { if (current_toolchain == host_toolchain) { @@ -916,7 +916,7 @@ source_set("v8_base") { } } } else if (is_mac) { - sources += [ "src/platform-macos,cc" ] + sources += [ "src/platform-macos.cc" ] } else if (is_win) { # TODO(jochen): Add support for cygwin. sources += [ -- 2.7.4