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

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

Issue 61153009: Add support for the QNX operating system. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Address latest review comments Created 7 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
« no previous file with comments | « test/cctest/test-time.cc ('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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 ], 799 ],
800 }], 800 }],
801 ], 801 ],
802 'sources': [ 802 'sources': [
803 '../../src/platform-linux.cc' 803 '../../src/platform-linux.cc'
804 ] 804 ]
805 }], 805 }],
806 ], 806 ],
807 }, 807 },
808 ], 808 ],
809 ['OS=="qnx"', {
810 'link_settings': {
811 'target_conditions': [
812 ['_toolset=="host" and host_os=="linux"', {
813 'libraries': [
814 '-lrt'
815 ],
816 }],
817 ['_toolset=="target"', {
818 'libraries': [
819 '-lbacktrace', '-lsocket'
820 ],
821 }],
822 ],
823 },
824 'sources': [
825 '../../src/platform-posix.cc',
826 ],
827 'target_conditions': [
828 ['_toolset=="host" and host_os=="linux"', {
829 'sources': [
830 '../../src/platform-linux.cc'
831 ],
832 }],
833 ['_toolset=="host" and host_os=="mac"', {
834 'sources': [
835 '../../src/platform-macos.cc'
836 ],
837 }],
838 ['_toolset=="target"', {
839 'sources': [
840 '../../src/platform-qnx.cc'
841 ],
842 }],
843 ],
844 },
845 ],
809 ['OS=="freebsd"', { 846 ['OS=="freebsd"', {
810 'link_settings': { 847 'link_settings': {
811 'libraries': [ 848 'libraries': [
812 '-L/usr/local/lib -lexecinfo', 849 '-L/usr/local/lib -lexecinfo',
813 ]}, 850 ]},
814 'sources': [ 851 'sources': [
815 '../../src/platform-freebsd.cc', 852 '../../src/platform-freebsd.cc',
816 '../../src/platform-posix.cc' 853 '../../src/platform-posix.cc'
817 ], 854 ],
818 } 855 }
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 }], 1141 }],
1105 ['v8_compress_startup_data=="bz2"', { 1142 ['v8_compress_startup_data=="bz2"', {
1106 'libraries': [ 1143 'libraries': [
1107 '-lbz2', 1144 '-lbz2',
1108 ] 1145 ]
1109 }], 1146 }],
1110 ], 1147 ],
1111 }, 1148 },
1112 ], 1149 ],
1113 } 1150 }
OLDNEW
« no previous file with comments | « test/cctest/test-time.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698