Revert "Rename target-specific binaries built for host."

The Android build system support for gyp has been fixed to handle
target-dependent host binaries correctly without requiring them to
include the target architecture in the name. Remove the suffixes to make
referring to these targets simpler again.

This reverts r14209.

BUG=
R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/236833004

Patch from Richard Coles <torne@chromium.org>.

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21428 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 38d30d78
......@@ -205,7 +205,7 @@
},
{
'dependencies': [
'../../tools/gyp/v8.gyp:v8_nosnapshot.<(v8_target_arch)',
'../../tools/gyp/v8.gyp:v8_nosnapshot',
],
}],
],
......
......@@ -46,16 +46,13 @@
# The dependency on v8_base should come from a transitive
# dependency however the Android toolchain requires libv8_base.a
# to appear before libv8_snapshot.a so it's listed explicitly.
'dependencies': ['v8_base.<(v8_target_arch)', 'v8_snapshot'],
'dependencies': ['v8_base', 'v8_snapshot'],
},
{
# The dependency on v8_base should come from a transitive
# dependency however the Android toolchain requires libv8_base.a
# to appear before libv8_snapshot.a so it's listed explicitly.
'dependencies': [
'v8_base.<(v8_target_arch)',
'v8_nosnapshot.<(v8_target_arch)',
],
'dependencies': ['v8_base', 'v8_nosnapshot'],
}],
['component=="shared_library"', {
'type': '<(component)',
......@@ -112,14 +109,14 @@
['want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
'dependencies': [
'mksnapshot.<(v8_target_arch)#host',
'mksnapshot#host',
'js2c#host',
'generate_trig_table#host',
],
}, {
'toolsets': ['target'],
'dependencies': [
'mksnapshot.<(v8_target_arch)',
'mksnapshot',
'js2c',
'generate_trig_table',
],
......@@ -138,7 +135,7 @@
}],
],
'dependencies': [
'v8_base.<(v8_target_arch)',
'v8_base',
],
'include_dirs+': [
'../../src',
......@@ -153,7 +150,7 @@
{
'action_name': 'run_mksnapshot',
'inputs': [
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot.<(v8_target_arch)<(EXECUTABLE_SUFFIX)',
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)',
],
'outputs': [
'<(INTERMEDIATE_DIR)/snapshot.cc',
......@@ -178,10 +175,10 @@
],
},
{
'target_name': 'v8_nosnapshot.<(v8_target_arch)',
'target_name': 'v8_nosnapshot',
'type': 'static_library',
'dependencies': [
'v8_base.<(v8_target_arch)',
'v8_base',
],
'include_dirs+': [
'../../src',
......@@ -235,7 +232,7 @@
]
},
{
'target_name': 'v8_base.<(v8_target_arch)',
'target_name': 'v8_base',
'type': 'static_library',
'dependencies': [
'v8_libbase.<(v8_target_arch)',
......@@ -1176,12 +1173,9 @@
]
},
{
'target_name': 'mksnapshot.<(v8_target_arch)',
'target_name': 'mksnapshot',
'type': 'executable',
'dependencies': [
'v8_base.<(v8_target_arch)',
'v8_nosnapshot.<(v8_target_arch)',
],
'dependencies': ['v8_base', 'v8_nosnapshot'],
'include_dirs+': [
'../../src',
],
......
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