Reviewers: marja,
Message:
Committed patchset #1 manually as r18111 (presubmit successful).
Description:
Fix arm build.
[email protected]
[email protected]
BUG=
Committed: https://code.google.com/p/v8/source/detail?r=18111
Please review this at https://codereview.chromium.org/91693003/
SVN Base: https://v8.googlecode.com/svn/branches/experimental/parser
Affected files (+8, -2 lines):
M tools/gyp/v8.gyp
Index: tools/gyp/v8.gyp
diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp
index
4e537d77abe03026fcd3e3f7b0c42e967b23a923..57b7c32926c57af57bc513b5671369ce0a8a577f
100644
--- a/tools/gyp/v8.gyp
+++ b/tools/gyp/v8.gyp
@@ -264,8 +264,14 @@
{
'target_name': 'v8_base.<(v8_target_arch)',
'type': 'static_library',
- 'dependencies': [
- 'generated-lexer',
+ 'conditions': [
+ ['want_separate_host_toolset==1', {
+ 'toolsets': ['host', 'target'],
+ 'dependencies': ['generated-lexer#host'],
+ }, {
+ 'toolsets': ['target'],
+ 'dependencies': ['generated-lexer'],
+ }],
],
'variables': {
'optimize': 'max',
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.