Commit 31ce5cca authored by ager@chromium.org's avatar ager@chromium.org

Allow compiling v8_shell with the 'host' toolset.

BUG=82437
TEST=Compile browser_tests for Arm against http://codereview.chromium.org/7087014/

Review URL: http://codereview.chromium.org/7212014

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8356 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d689da91
......@@ -232,6 +232,7 @@
'targets': [
{
'target_name': 'v8',
'toolsets': ['host', 'target'],
'conditions': [
['v8_use_snapshot=="true"', {
'dependencies': ['v8_snapshot'],
......@@ -281,6 +282,7 @@
{
'target_name': 'v8_snapshot',
'type': '<(library)',
'toolsets': ['host', 'target'],
'conditions': [
['component=="shared_library"', {
'conditions': [
......@@ -954,6 +956,7 @@
{
'target_name': 'v8_shell',
'type': 'executable',
'toolsets': ['host'],
'dependencies': [
'v8'
],
......@@ -977,6 +980,7 @@
{
'target_name': 'v8',
'type': 'settings',
'toolsets': ['host', 'target'],
'link_settings': {
'libraries': [
'-lv8',
......@@ -986,6 +990,7 @@
{
'target_name': 'v8_shell',
'type': 'none',
'toolsets': ['host'],
'dependencies': [
'v8'
],
......
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