| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |