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

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

Issue 340373002: [Arm]: Simplify compile-time Arm feature detection. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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/flags.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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 '-lrt' 830 '-lrt'
831 ] 831 ]
832 }, 832 },
833 'sources': [ ### gcmole(os:linux) ### 833 'sources': [ ### gcmole(os:linux) ###
834 '../../src/platform-linux.cc', 834 '../../src/platform-linux.cc',
835 '../../src/platform-posix.cc' 835 '../../src/platform-posix.cc'
836 ], 836 ],
837 } 837 }
838 ], 838 ],
839 ['OS=="android"', { 839 ['OS=="android"', {
840 'defines': [
841 'CAN_USE_VFP_INSTRUCTIONS',
842 ],
843 'sources': [ 840 'sources': [
844 '../../src/platform-posix.cc' 841 '../../src/platform-posix.cc'
845 ], 842 ],
846 'conditions': [ 843 'conditions': [
847 ['host_os=="mac"', { 844 ['host_os=="mac"', {
848 'target_conditions': [ 845 'target_conditions': [
849 ['_toolset=="host"', { 846 ['_toolset=="host"', {
850 'sources': [ 847 'sources': [
851 '../../src/platform-macos.cc' 848 '../../src/platform-macos.cc'
852 ] 849 ]
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 }], 1241 }],
1245 ['v8_compress_startup_data=="bz2"', { 1242 ['v8_compress_startup_data=="bz2"', {
1246 'libraries': [ 1243 'libraries': [
1247 '-lbz2', 1244 '-lbz2',
1248 ] 1245 ]
1249 }], 1246 }],
1250 ], 1247 ],
1251 }, 1248 },
1252 ], 1249 ],
1253 } 1250 }
OLDNEW
« no previous file with comments | « src/flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698