| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 [ 'want_separate_host_toolset==1', { | 59 [ 'want_separate_host_toolset==1', { |
| 60 'dependencies': [ | 60 'dependencies': [ |
| 61 'd8_js2c#host', | 61 'd8_js2c#host', |
| 62 ], | 62 ], |
| 63 }, { | 63 }, { |
| 64 'dependencies': [ | 64 'dependencies': [ |
| 65 'd8_js2c', | 65 'd8_js2c', |
| 66 ], | 66 ], |
| 67 }], | 67 }], |
| 68 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \ | 68 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \ |
| 69 or OS=="openbsd" or OS=="solaris" or OS=="android")', { | 69 or OS=="openbsd" or OS=="solaris" or OS=="android" \ |
| 70 or OS=="qnx")', { |
| 70 'sources': [ 'd8-posix.cc', ] | 71 'sources': [ 'd8-posix.cc', ] |
| 71 }], | 72 }], |
| 72 [ 'OS=="win"', { | 73 [ 'OS=="win"', { |
| 73 'sources': [ 'd8-windows.cc', ] | 74 'sources': [ 'd8-windows.cc', ] |
| 74 }], | 75 }], |
| 75 ], | 76 ], |
| 76 }], | 77 }], |
| 77 ['v8_enable_vtunejit==1', { | 78 ['v8_enable_vtunejit==1', { |
| 78 'dependencies': [ | 79 'dependencies': [ |
| 79 '../src/third_party/vtune/v8vtune.gyp:v8_vtune', | 80 '../src/third_party/vtune/v8vtune.gyp:v8_vtune', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 '<@(_outputs)', | 125 '<@(_outputs)', |
| 125 'D8', | 126 'D8', |
| 126 'off', # compress startup data | 127 'off', # compress startup data |
| 127 '<@(js_files)' | 128 '<@(js_files)' |
| 128 ], | 129 ], |
| 129 }, | 130 }, |
| 130 ], | 131 ], |
| 131 } | 132 } |
| 132 ], | 133 ], |
| 133 } | 134 } |
| OLD | NEW |