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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 (OS=="android" or OS=="qnx")', { | 108 (OS=="android" or OS=="qnx")', { |
109 'want_separate_host_toolset': 1, | 109 'want_separate_host_toolset': 1, |
110 }, { | 110 }, { |
111 'want_separate_host_toolset': 0, | 111 'want_separate_host_toolset': 0, |
112 }], | 112 }], |
113 ['OS == "win"', { | 113 ['OS == "win"', { |
114 'os_posix%': 0, | 114 'os_posix%': 0, |
115 }, { | 115 }, { |
116 'os_posix%': 1, | 116 'os_posix%': 1, |
117 }], | 117 }], |
118 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \ | 118 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ |
119 (OS=="linux" or OS=="mac")', { | 119 (OS=="linux" or OS=="mac")', { |
120 'v8_enable_gdbjit%': 1, | 120 'v8_enable_gdbjit%': 1, |
121 }, { | 121 }, { |
122 'v8_enable_gdbjit%': 0, | 122 'v8_enable_gdbjit%': 0, |
123 }], | 123 }], |
124 ], | 124 ], |
125 # Default ARM variable settings. | 125 # Default ARM variable settings. |
126 'arm_version%': 'default', | 126 'arm_version%': 'default', |
127 'arm_fpu%': 'vfpv3', | 127 'arm_fpu%': 'vfpv3', |
128 'arm_float_abi%': 'default', | 128 'arm_float_abi%': 'default', |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 ], | 357 ], |
358 'target_conditions': [ | 358 'target_conditions': [ |
359 ['_type!="static_library"', { | 359 ['_type!="static_library"', { |
360 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 360 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
361 }], | 361 }], |
362 ], # target_conditions | 362 ], # target_conditions |
363 }, # target_defaults | 363 }, # target_defaults |
364 }], # OS=="mac" | 364 }], # OS=="mac" |
365 ], | 365 ], |
366 } | 366 } |
OLD | NEW |