Revision: 21680
Author:   [email protected]
Date:     Wed Jun  4 15:23:06 2014 UTC
Log:      Version 3.27.19.3 (merged r21678)

Fix building android gn

[email protected]
BUG=

Review URL: https://codereview.chromium.org/311113003
http://code.google.com/p/v8/source/detail?r=21680

Modified:
 /trunk/BUILD.gn
 /trunk/src/version.cc

=======================================
--- /trunk/BUILD.gn     Wed Jun  4 09:31:53 2014 UTC
+++ /trunk/BUILD.gn     Wed Jun  4 15:23:06 2014 UTC
@@ -976,8 +976,14 @@
     ":v8_nosnapshot",
   ]

+  libs = []
+
   if (v8_compress_startup_data == "bz2") {
-    libs = [ "bz2" ]
+    libs += [ "bz2" ]
+  }
+
+  if (is_android && current_toolchain != host_toolchain) {
+    libs += [ "log" ]
   }
 }

@@ -1003,10 +1009,6 @@
       ":v8_nosnapshot",
     ]
   }
-
-  if (is_android && current_toolchain != host_toolchain) {
-    libs = [ "log" ]
-  }

   configs -= [ "//build/config/compiler:chromium_code" ]
   configs += [ "//build/config/compiler:no_chromium_code" ]
=======================================
--- /trunk/src/version.cc       Wed Jun  4 09:31:53 2014 UTC
+++ /trunk/src/version.cc       Wed Jun  4 15:23:06 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     27
 #define BUILD_NUMBER      19
-#define PATCH_LEVEL       2
+#define PATCH_LEVEL       3
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to