Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 32 OUTDIR ?= out | 32 OUTDIR ?= out |
| 33 TESTJOBS ?= | 33 TESTJOBS ?= |
| 34 GYPFLAGS ?= | 34 GYPFLAGS ?= |
| 35 TESTFLAGS ?= | 35 TESTFLAGS ?= |
| 36 ANDROID_NDK_ROOT ?= | 36 ANDROID_NDK_ROOT ?= |
| 37 ANDROID_NDK_HOST_ARCH ?= | 37 ANDROID_NDK_HOST_ARCH ?= |
| 38 ANDROID_TOOLCHAIN ?= | 38 ANDROID_TOOLCHAIN ?= |
| 39 ANDROID_V8 ?= /data/local/tmp/v8 | 39 ANDROID_V8 ?= /data/local/tmp/v8 |
| 40 NACL_SDK_ROOT ?= | 40 NACL_SDK_ROOT ?= |
| 41 | 41 |
| 42 GYPFLAGS += -Dv8_use_external_startup_data=1 | |
|
vogelheim1
2014/12/09 13:26:50
This looks like a rather surprising difference bet
Yang
2014/12/09 14:40:37
Thanks for catching this. I added this line for te
| |
| 43 | |
| 42 # Special build flags. Use them like this: "make library=shared" | 44 # Special build flags. Use them like this: "make library=shared" |
| 43 | 45 |
| 44 # library=shared || component=shared_library | 46 # library=shared || component=shared_library |
| 45 ifeq ($(library), shared) | 47 ifeq ($(library), shared) |
| 46 GYPFLAGS += -Dcomponent=shared_library | 48 GYPFLAGS += -Dcomponent=shared_library |
| 47 endif | 49 endif |
| 48 ifdef component | 50 ifdef component |
| 49 GYPFLAGS += -Dcomponent=$(component) | 51 GYPFLAGS += -Dcomponent=$(component) |
| 50 endif | 52 endif |
| 51 # console=readline | 53 # console=readline |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 479 # We need to manually set the stack limit here, to work around bugs in | 481 # We need to manually set the stack limit here, to work around bugs in |
| 480 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. | 482 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. |
| 481 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) | 483 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) |
| 482 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' | 484 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' |
| 483 | 485 |
| 484 gtags.clean: | 486 gtags.clean: |
| 485 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS | 487 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS |
| 486 | 488 |
| 487 dependencies builddeps: | 489 dependencies builddeps: |
| 488 $(error Use 'gclient sync' instead) | 490 $(error Use 'gclient sync' instead) |
| OLD | NEW |