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

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

Issue 9071004: Add netbsd support to gyp build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: remove strict-aliasing warning Created 8 years, 11 months 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
« no previous file with comments | « src/platform-openbsd.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 2011 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
11 # with the distribution. 11 # with the distribution.
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 'link_settings': { 677 'link_settings': {
678 'libraries': [ 678 'libraries': [
679 '-L/usr/local/lib -lexecinfo', 679 '-L/usr/local/lib -lexecinfo',
680 ]}, 680 ]},
681 'sources': [ 681 'sources': [
682 '../../src/platform-openbsd.cc', 682 '../../src/platform-openbsd.cc',
683 '../../src/platform-posix.cc' 683 '../../src/platform-posix.cc'
684 ], 684 ],
685 } 685 }
686 ], 686 ],
687 ['OS=="netbsd"', {
688 'link_settings': {
689 'libraries': [
690 '-L/usr/pkg/lib -Wl,-R/usr/pkg/lib -lexecinfo',
691 ]},
692 'sources': [
693 '../../src/platform-openbsd.cc',
694 '../../src/platform-posix.cc'
695 ],
696 }
697 ],
687 ['OS=="solaris"', { 698 ['OS=="solaris"', {
688 'sources': [ 699 'sources': [
689 '../../src/platform-solaris.cc', 700 '../../src/platform-solaris.cc',
690 '../../src/platform-posix.cc', 701 '../../src/platform-posix.cc',
691 ], 702 ],
692 } 703 }
693 ], 704 ],
694 ['OS=="mac"', { 705 ['OS=="mac"', {
695 'sources': [ 706 'sources': [
696 '../../src/platform-macos.cc', 707 '../../src/platform-macos.cc',
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 }], 946 }],
936 ], 947 ],
937 'dependencies': [ 948 'dependencies': [
938 'v8' 949 'v8'
939 ], 950 ],
940 }, 951 },
941 ], 952 ],
942 }], 953 }],
943 ], 954 ],
944 } 955 }
OLDNEW
« no previous file with comments | « src/platform-openbsd.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698