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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 'defines': [ | 736 'defines': [ |
737 'BUILDING_V8_SHARED', | 737 'BUILDING_V8_SHARED', |
738 'V8_SHARED', | 738 'V8_SHARED', |
739 ], | 739 ], |
740 }], | 740 }], |
741 ['v8_postmortem_support=="true"', { | 741 ['v8_postmortem_support=="true"', { |
742 'sources': [ | 742 'sources': [ |
743 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', | 743 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
744 ] | 744 ] |
745 }], | 745 }], |
| 746 ['v8_enable_gdbjit==1', { |
| 747 'sources': [ |
| 748 '../../src/gdb-jit.cc', |
| 749 ] |
| 750 }], |
746 ], | 751 ], |
747 }, | 752 }, |
748 { | 753 { |
749 'target_name': 'js2c', | 754 'target_name': 'js2c', |
750 'type': 'none', | 755 'type': 'none', |
751 'conditions': [ | 756 'conditions': [ |
752 ['want_separate_host_toolset==1', { | 757 ['want_separate_host_toolset==1', { |
753 'toolsets': ['host'], | 758 'toolsets': ['host'], |
754 }, { | 759 }, { |
755 'toolsets': ['target'], | 760 'toolsets': ['target'], |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 }], | 1000 }], |
996 ], | 1001 ], |
997 'dependencies': [ | 1002 'dependencies': [ |
998 'v8' | 1003 'v8' |
999 ], | 1004 ], |
1000 }, | 1005 }, |
1001 ], | 1006 ], |
1002 }], | 1007 }], |
1003 ], | 1008 ], |
1004 } | 1009 } |
OLD | NEW |