Commit 8a3f19f7 authored by ulan@chromium.org's avatar ulan@chromium.org

Support shared library build of Android for v8.

v8 depends on the system log library. If we built it as a separate so,
log needs to be included in the link step.

BUG=chromium:158821

Review URL: https://chromiumcodereview.appspot.com/11369081
Patch from Yaron Friedman <yfriedman@chromium.org>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12883 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ecb6126e
......@@ -69,6 +69,14 @@
],
},
'conditions': [
['OS=="android"', {
'libraries': [
'-llog',
],
'include_dirs': [
'src/common/android/include',
],
}],
['OS=="mac"', {
'xcode_settings': {
'OTHER_LDFLAGS': ['-dynamiclib', '-all_load']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment