From: ulan@chromium.org Date: Wed, 13 Nov 2013 12:59:49 +0000 (+0000) Subject: Fix shared library build after r17692. X-Git-Tag: upstream/4.7.83~11767 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f621f50fb2035c3768b7ebd09fbee789d11f35f3;p=platform%2Fupstream%2Fv8.git Fix shared library build after r17692. BUG= R=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/70663003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17693 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/build/all.gyp b/build/all.gyp index 60bf616..aa8e369 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -10,9 +10,15 @@ 'dependencies': [ '../samples/samples.gyp:*', '../src/d8.gyp:d8', - '../tools/lexer-shell.gyp:lexer-shell', '../test/cctest/cctest.gyp:*', ], + 'conditions': [ + ['component!="shared_library"', { + 'dependencies': [ + '../tools/lexer-shell.gyp:lexer-shell', + ], + }], + ] } ] }