Re: [v8-users] building V8 for Android on Mac or ubuntu w static libs?

2017-01-03 Thread Jochen Eisinger
yeah, due to vacations, my CL to fix the gn error is still under review. Meanwhile, you can build on linux, that should work already now On Mon, Jan 2, 2017 at 9:12 PM Mindy DelliCarpini wrote: > Thanks again for the help Jochen...but still broken: > > *.gclient:* > solutions = [ > { > "ur

Re: [v8-users] building V8 for Android on Mac or ubuntu w static libs?

2017-01-02 Thread Mindy DelliCarpini
Thanks again for the help Jochen...but still broken: *.gclient:* solutions = [ { "url": "https://chromium.googlesource.com/v8/v8.git";, "managed": False, "name": "v8", "deps_file": "DEPS", "custom_deps": {}, }, ] target_os = ['android', 'mac'] *gclient sync* relevant logs

Re: [v8-users] building V8 for Android on Mac or ubuntu w static libs?

2017-01-02 Thread Jochen Eisinger
On Sat, Dec 24, 2016 at 9:10 PM Mindy DelliCarpini wrote: > In case the issue is this, I'm running El Capitan 10.11.6 > > On Saturday, December 24, 2016 at 12:04:00 PM UTC-8, Mindy DelliCarpini > wrote: > > Ok so did this to the .gclient file 1 directory up: > solutions = [ > { > "url": "ht

Re: [v8-users] building V8 for Android on Mac or ubuntu w static libs?

2016-12-24 Thread Mindy DelliCarpini
In case the issue is this, I'm running El Capitan 10.11.6 On Saturday, December 24, 2016 at 12:04:00 PM UTC-8, Mindy DelliCarpini wrote: > > Ok so did this to the .gclient file 1 directory up: > solutions = [ > { > "url": "https://chromium.googlesource.com/v8/v8.git";, > "managed": Fals

Re: [v8-users] building V8 for Android on Mac or ubuntu w static libs?

2016-12-24 Thread Mindy DelliCarpini
Ok so did this to the .gclient file 1 directory up: solutions = [ { "url": "https://chromium.googlesource.com/v8/v8.git";, "managed": False, "name": "v8", "deps_file": "DEPS", "custom_deps": {}, "target_os" : ['android', 'mac'] }, ] Then: gclient sync Then tools/dev/v8gen.

Re: [v8-users] building V8 for Android on Mac or ubuntu w static libs?

2016-12-22 Thread Jochen Eisinger
hey, to build for android, you should add target_os = "android" and target_cpu = "arm". you'll also have to add target_os = ['android', 'mac'] to your .gclient file (which should be one level up from your v8 checkout), so gclient sync will download the android specific deps hth -jochen On Thu,