| 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 23 matching lines...) Expand all Loading... |
| 34 { | 34 { |
| 35 'target_name': 'd8', | 35 'target_name': 'd8', |
| 36 'type': 'executable', | 36 'type': 'executable', |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 '../tools/gyp/v8.gyp:v8', | 38 '../tools/gyp/v8.gyp:v8', |
| 39 ], | 39 ], |
| 40 # Generated source files need this explicitly: | 40 # Generated source files need this explicitly: |
| 41 'include_dirs+': [ | 41 'include_dirs+': [ |
| 42 '../src', | 42 '../src', |
| 43 ], | 43 ], |
| 44 'defines': [ | |
| 45 'ENABLE_DEBUGGER_SUPPORT', | |
| 46 ], | |
| 47 'sources': [ | 44 'sources': [ |
| 48 'd8.cc', | 45 'd8.cc', |
| 49 ], | 46 ], |
| 50 'conditions': [ | 47 'conditions': [ |
| 51 [ 'component!="shared_library"', { | 48 [ 'component!="shared_library"', { |
| 52 'sources': [ 'd8-debug.cc', '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', ], | 49 'sources': [ 'd8-debug.cc', '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', ], |
| 53 'conditions': [ | 50 'conditions': [ |
| 54 [ 'want_separate_host_toolset==1', { | 51 [ 'want_separate_host_toolset==1', { |
| 55 'dependencies': [ | 52 'dependencies': [ |
| 56 'd8_js2c#host', | 53 'd8_js2c#host', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 '<@(_outputs)', | 104 '<@(_outputs)', |
| 108 'D8', | 105 'D8', |
| 109 'off', # compress startup data | 106 'off', # compress startup data |
| 110 '<@(js_files)' | 107 '<@(js_files)' |
| 111 ], | 108 ], |
| 112 }, | 109 }, |
| 113 ], | 110 ], |
| 114 } | 111 } |
| 115 ], | 112 ], |
| 116 } | 113 } |
| OLD | NEW |