Skip to content

Commit

Permalink
deps: fix gyp configuration for v8-inspector
Browse files Browse the repository at this point in the history
Cross-compiled builds need different toolsets.

PR-URL: #10992
Reviewed-By: Ben Noordhuis <[email protected]>
  • Loading branch information
targos committed Feb 22, 2017
1 parent 00a2aa0 commit 7c0c7ba
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions deps/v8/src/inspector/inspector.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
'targets': [
{ 'target_name': 'inspector_injected_script',
'type': 'none',
'conditions': [
['want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
}, {
'toolsets': ['target'],
}]
],
'actions': [
{
'action_name': 'convert_js_to_cpp_char_array',
Expand All @@ -37,6 +44,13 @@
},
{ 'target_name': 'inspector_debugger_script',
'type': 'none',
'conditions': [
['want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
}, {
'toolsets': ['target'],
}]
],
'actions': [
{
'action_name': 'convert_js_to_cpp_char_array',
Expand All @@ -61,6 +75,13 @@
},
{ 'target_name': 'protocol_compatibility',
'type': 'none',
'conditions': [
['want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
}, {
'toolsets': ['target'],
}]
],
'actions': [
{
'action_name': 'protocol_compatibility',
Expand All @@ -83,6 +104,13 @@
{ 'target_name': 'protocol_generated_sources',
'type': 'none',
'dependencies': [ 'protocol_compatibility' ],
'conditions': [
['want_separate_host_toolset==1', {
'toolsets': ['host', 'target'],
}, {
'toolsets': ['target'],
}]
],
'actions': [
{
'action_name': 'protocol_generated_sources',
Expand Down

0 comments on commit 7c0c7ba

Please sign in to comment.