summaryrefslogtreecommitdiffstats
path: root/V8Binding/Android.libv8.mk
Commit message (Collapse)AuthorAgeFilesLines
* Move V8 to external/v8Steve Block2009-10-301-87/+0
| | | | Change-Id: I9ef85bb1a4fd0e808ca37ac532803542b6dfb04d
* Separate V8 logging from debugging flags.Feng Qian2009-07-071-1/+5
| | | | | | Support both ENABLE_V8_LOGGING_AND_PROFILING, DEBUG_V8 flags. To enable logging, one can set JS flags to --logfile /sdcard/v8.log --log_gc (or other options).
* Avoid generating jsmin.pyc in the source directory.Feng Qian2009-07-061-2/+9
| | | | Copy js2c.py and jsmin.py to intermediate directory first, then invoke the script there. Python generates a .pyc file in that directory.
* Fix Mac build of mksnapshotGrace Kloba2009-07-061-0/+5
| | | | mksnapshot is a host program and it is platform dependent. Add rules to Makefiles so that it picks up the right file depending on the host platform.
* Add V8 snapshot to Makefile.Feng Qian2009-07-011-138/+28
| | | | | Snapshotting can be turned on by adding ENABLE_V8_SNAPSHOT in buildspec.mk file. It is off by default. When it is turned on, the binary size is increased by about 370K, it only saves the first cold startup time of browser (or first time using JavaScript).
* Add logging.Feng Qian2009-06-291-2/+8
|
* Build libv8 as a static library.Feng Qian2009-06-231-2/+2
| | | | So no need to change prelink map.
* Fix V8 build.Feng Qian2009-06-221-30/+34
|
* Renaming bindings to binding.Feng Qian2009-06-191-5/+8
| | | | Also updated makefiles.
* Rename Android.mk to Android.libv8.mk, v8 to bindings.Feng Qian2009-06-191-0/+168
Plan to drop who v8 src in this directory as v8/