| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'v8_use_arm_eabi_hardfloat%': 'false', | 55 'v8_use_arm_eabi_hardfloat%': 'false', |
| 56 | 56 |
| 57 'v8_use_snapshot%': 'true', | 57 'v8_use_snapshot%': 'true', |
| 58 'host_os%': '<(OS)', | 58 'host_os%': '<(OS)', |
| 59 'v8_use_liveobjectlist%': 'false', | 59 'v8_use_liveobjectlist%': 'false', |
| 60 }, | 60 }, |
| 61 'conditions': [ | 61 'conditions': [ |
| 62 ['use_system_v8==0', { | 62 ['use_system_v8==0', { |
| 63 'target_defaults': { | 63 'target_defaults': { |
| 64 'defines': [ | 64 'defines': [ |
| 65 'ENABLE_LOGGING_AND_PROFILING', | |
| 66 'ENABLE_DEBUGGER_SUPPORT', | 65 'ENABLE_DEBUGGER_SUPPORT', |
| 67 'ENABLE_VMSTATE_TRACKING', | |
| 68 'V8_FAST_TLS', | |
| 69 ], | 66 ], |
| 70 'conditions': [ | 67 'conditions': [ |
| 71 ['OS!="mac"', { | 68 ['OS!="mac"', { |
| 72 # TODO(mark): The OS!="mac" conditional is temporary. It can be | 69 # TODO(mark): The OS!="mac" conditional is temporary. It can be |
| 73 # removed once the Mac Chromium build stops setting target_arch to | 70 # removed once the Mac Chromium build stops setting target_arch to |
| 74 # ia32 and instead sets it to mac. Other checks in this file for | 71 # ia32 and instead sets it to mac. Other checks in this file for |
| 75 # OS=="mac" can be removed at that time as well. This can be cleaned | 72 # OS=="mac" can be removed at that time as well. This can be cleaned |
| 76 # up once http://crbug.com/44205 is fixed. | 73 # up once http://crbug.com/44205 is fixed. |
| 77 'conditions': [ | 74 'conditions': [ |
| 78 ['v8_target_arch=="arm"', { | 75 ['v8_target_arch=="arm"', { |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 'type': 'none', | 1009 'type': 'none', |
| 1013 'toolsets': ['host'], | 1010 'toolsets': ['host'], |
| 1014 'dependencies': [ | 1011 'dependencies': [ |
| 1015 'v8' | 1012 'v8' |
| 1016 ], | 1013 ], |
| 1017 }, | 1014 }, |
| 1018 ], | 1015 ], |
| 1019 }], | 1016 }], |
| 1020 ], | 1017 ], |
| 1021 } | 1018 } |
| OLD | NEW |