| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 ], | 54 ], |
| 55 }, { | 55 }, { |
| 56 'dependencies': [ | 56 'dependencies': [ |
| 57 'd8_js2c', | 57 'd8_js2c', |
| 58 ], | 58 ], |
| 59 }], | 59 }], |
| 60 [ 'console=="readline"', { | 60 [ 'console=="readline"', { |
| 61 'libraries': [ '-lreadline', ], | 61 'libraries': [ '-lreadline', ], |
| 62 'sources': [ 'd8-readline.cc' ], | 62 'sources': [ 'd8-readline.cc' ], |
| 63 }], | 63 }], |
| 64 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \ | 64 [ 'OS!="win"', { |
| 65 or OS=="openbsd" or OS=="solaris" or OS=="android")', { | |
| 66 'sources': [ 'd8-posix.cc', ] | 65 'sources': [ 'd8-posix.cc', ] |
| 67 }], | 66 }], |
| 68 [ 'OS=="win"', { | 67 [ 'OS=="win"', { |
| 69 'sources': [ 'd8-windows.cc', ] | 68 'sources': [ 'd8-windows.cc', ] |
| 70 }], | 69 }], |
| 71 ], | 70 ], |
| 72 }], | 71 }], |
| 73 ], | 72 ], |
| 74 }, | 73 }, |
| 75 { | 74 { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 104 '<@(_outputs)', | 103 '<@(_outputs)', |
| 105 'D8', | 104 'D8', |
| 106 'off', # compress startup data | 105 'off', # compress startup data |
| 107 '<@(js_files)' | 106 '<@(js_files)' |
| 108 ], | 107 ], |
| 109 }, | 108 }, |
| 110 ], | 109 ], |
| 111 } | 110 } |
| 112 ], | 111 ], |
| 113 } | 112 } |
| OLD | NEW |