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', | 66 'V8_FAST_TLS', |
69 ], | 67 ], |
70 'conditions': [ | 68 'conditions': [ |
71 ['OS!="mac"', { | 69 ['OS!="mac"', { |
72 # TODO(mark): The OS!="mac" conditional is temporary. It can be | 70 # TODO(mark): The OS!="mac" conditional is temporary. It can be |
73 # removed once the Mac Chromium build stops setting target_arch to | 71 # 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 | 72 # 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 | 73 # OS=="mac" can be removed at that time as well. This can be cleaned |
76 # up once http://crbug.com/44205 is fixed. | 74 # up once http://crbug.com/44205 is fixed. |
77 'conditions': [ | 75 'conditions': [ |
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 'type': 'none', | 1005 'type': 'none', |
1008 'toolsets': ['host'], | 1006 'toolsets': ['host'], |
1009 'dependencies': [ | 1007 'dependencies': [ |
1010 'v8' | 1008 'v8' |
1011 ], | 1009 ], |
1012 }, | 1010 }, |
1013 ], | 1011 ], |
1014 }], | 1012 }], |
1015 ], | 1013 ], |
1016 } | 1014 } |
OLD | NEW |