Revision: 13449 Author: [email protected] Date: Mon Jan 21 06:14:28 2013 Log: Remove <(library) usage from v8.gyp.
BUG=111541 [email protected] Signed-off-by: Thiago Farina <[email protected]> Review URL: https://codereview.chromium.org/12022021 Patch from Thiago Farina <[email protected]>. http://code.google.com/p/v8/source/detail?r=13449 Modified: /branches/bleeding_edge/tools/gyp/v8.gyp ======================================= --- /branches/bleeding_edge/tools/gyp/v8.gyp Wed Jan 16 07:44:26 2013 +++ /branches/bleeding_edge/tools/gyp/v8.gyp Mon Jan 21 06:14:28 2013 @@ -99,7 +99,7 @@ }, { 'target_name': 'v8_snapshot', - 'type': '<(library)', + 'type': 'static_library', 'conditions': [ ['want_separate_host_toolset==1', { 'toolsets': ['host', 'target'], @@ -190,7 +190,7 @@ }, { 'target_name': 'v8_nosnapshot', - 'type': '<(library)', + 'type': 'static_library', 'dependencies': [ 'v8_base', ], @@ -220,7 +220,7 @@ }, { 'target_name': 'v8_base', - 'type': '<(library)', + 'type': 'static_library', 'variables': { 'optimize': 'max', }, @@ -908,7 +908,7 @@ }, { 'target_name': 'preparser_lib', - 'type': '<(library)', + 'type': 'static_library', 'include_dirs+': [ '../../src', ], -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
