OLD | NEW |
1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 20 matching lines...) Expand all Loading... |
31 'gcc_version%': 'unknown', | 31 'gcc_version%': 'unknown', |
32 'target_arch%': 'ia32', | 32 'target_arch%': 'ia32', |
33 'v8_use_snapshot%': 'true', | 33 'v8_use_snapshot%': 'true', |
34 'v8_regexp%': 'native', | 34 'v8_regexp%': 'native', |
35 }, | 35 }, |
36 'target_defaults': { | 36 'target_defaults': { |
37 'defines': [ | 37 'defines': [ |
38 'ENABLE_LOGGING_AND_PROFILING', | 38 'ENABLE_LOGGING_AND_PROFILING', |
39 'ENABLE_DEBUGGER_SUPPORT', | 39 'ENABLE_DEBUGGER_SUPPORT', |
40 'ENABLE_VMSTATE_TRACKING', | 40 'ENABLE_VMSTATE_TRACKING', |
| 41 'ENABLE_CPP_PROFILES_PROCESSOR', |
41 ], | 42 ], |
42 'conditions': [ | 43 'conditions': [ |
43 ['target_arch=="arm"', { | 44 ['target_arch=="arm"', { |
44 'defines': [ | 45 'defines': [ |
45 'V8_TARGET_ARCH_ARM', | 46 'V8_TARGET_ARCH_ARM', |
46 ], | 47 ], |
47 }], | 48 }], |
48 ['target_arch=="ia32"', { | 49 ['target_arch=="ia32"', { |
49 'defines': [ | 50 'defines': [ |
50 'V8_TARGET_ARCH_IA32', | 51 'V8_TARGET_ARCH_IA32', |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 ], | 675 ], |
675 'conditions': [ | 676 'conditions': [ |
676 [ 'OS=="win"', { | 677 [ 'OS=="win"', { |
677 # This could be gotten by not setting chromium_code, if that's OK. | 678 # This could be gotten by not setting chromium_code, if that's OK. |
678 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 679 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
679 }], | 680 }], |
680 ], | 681 ], |
681 }, | 682 }, |
682 ], | 683 ], |
683 } | 684 } |
OLD | NEW |