Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build-v8.gypi

Issue 29748587: Issue 6063, 6531 - Update V8 to 6.5.254.41, use C++14 and NDK-r16b (Closed) Base URL: https://github.com/adblockplus/libadblockplus@549616e865707b89e95659d55c70e22d63130ce5
Patch Set: fix and simplify build for Windows Created April 18, 2018, 6:41 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build-v8.cmd ('k') | common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build-v8.gypi
diff --git a/build-v8.gypi b/build-v8.gypi
index b0e7ddd7a5e47a58e264fa9de117d05e39291381..d4ad519a83bf67710ecf485b96da95d0b1b79338 100644
--- a/build-v8.gypi
+++ b/build-v8.gypi
@@ -6,9 +6,21 @@
'v8_use_external_startup_data': 0,
'v8_use_snapshot': 1,
'v8_random_seed%': 0,
+ 'v8_android_log_stdout': 1,
},
+ 'target_defaults': {
+ 'defines': [
+ '__ANDROID_API__=16',
+ ],
+ },
'conditions': [
+ ['OS=="linux" or OS=="mac"', {
+ 'target_defaults': {
+ 'cflags': [ '-fPIC' ],
+ 'cflags_cc': [ '-fPIC' ]
+ }
+ }],
['OS=="win"', {
'target_defaults': {
'configurations': {
« no previous file with comments | « build-v8.cmd ('k') | common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld