Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: tools/gyp/v8.gyp

Issue 8631012: Upstream Android V8 change. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« build/common.gypi ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
11 # with the distribution. 11 # with the distribution.
12 # * Neither the name of Google Inc. nor the names of its 12 # * Neither the name of Google Inc. nor the names of its
13 # contributors may be used to endorse or promote products derived 13 # contributors may be used to endorse or promote products derived
14 # from this software without specific prior written permission. 14 # from this software without specific prior written permission.
15 # 15 #
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 { 28 {
29 'includes': ['../../build/common.gypi'], 29 'includes': ['../../build/common.gypi'],
30 'target_conditions': [
31 ['OS=="android" and _toolset=="target"', {
32 'link_settings': {
33 'libraries': [
34 '-llog',
35 ],
36 }
37 }],
38 ],
39 'conditions': [ 30 'conditions': [
40 ['use_system_v8==0', { 31 ['use_system_v8==0', {
41 'targets': [ 32 'targets': [
42 { 33 {
43 'target_name': 'v8', 34 'target_name': 'v8',
44 'conditions': [ 35 'conditions': [
45 ['want_separate_host_toolset==1', { 36 ['want_separate_host_toolset==1', {
46 'toolsets': ['host', 'target'], 37 'toolsets': ['host', 'target'],
47 }, { 38 }, {
48 'toolsets': ['target'], 39 'toolsets': ['target'],
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 } 632 }
642 ], 633 ],
643 ['OS=="android"', { 634 ['OS=="android"', {
644 'defines': [ 635 'defines': [
645 'CAN_USE_VFP_INSTRUCTIONS', 636 'CAN_USE_VFP_INSTRUCTIONS',
646 ], 637 ],
647 'sources': [ 638 'sources': [
648 '../../src/platform-posix.cc', 639 '../../src/platform-posix.cc',
649 ], 640 ],
650 'conditions': [ 641 'conditions': [
651 ['host_os=="mac" and _toolset!="target"', { 642 ['host_os=="mac"', {
652 'sources': [ 643 'target_conditions': [
653 '../../src/platform-macos.cc' 644 ['_toolset=="host"', {
654 ] 645 'sources': [
646 '../../src/platform-macos.cc'
647 ]
648 }, {
649 'sources': [
650 '../../src/platform-linux.cc'
651 ]
652 }],
653 ],
655 }, { 654 }, {
656 'sources': [ 655 'sources': [
657 '../../src/platform-linux.cc' 656 '../../src/platform-linux.cc'
658 ] 657 ]
659 }], 658 }],
660 ], 659 ],
661 }, 660 },
662 ], 661 ],
663 ['OS=="freebsd"', { 662 ['OS=="freebsd"', {
664 'link_settings': { 663 'link_settings': {
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 }], 932 }],
934 ], 933 ],
935 'dependencies': [ 934 'dependencies': [
936 'v8' 935 'v8'
937 ], 936 ],
938 }, 937 },
939 ], 938 ],
940 }], 939 }],
941 ], 940 ],
942 } 941 }
OLDNEW
« build/common.gypi ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698