| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'os_posix%': 0, | 111 'os_posix%': 0, |
| 112 }, { | 112 }, { |
| 113 'os_posix%': 1, | 113 'os_posix%': 1, |
| 114 }], | 114 }], |
| 115 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ | 115 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ |
| 116 (OS=="linux" or OS=="mac")', { | 116 (OS=="linux" or OS=="mac")', { |
| 117 'v8_enable_gdbjit%': 1, | 117 'v8_enable_gdbjit%': 1, |
| 118 }, { | 118 }, { |
| 119 'v8_enable_gdbjit%': 0, | 119 'v8_enable_gdbjit%': 0, |
| 120 }], | 120 }], |
| 121 ['OS=="mac"', { | 121 ['OS=="linux" or OS=="mac"', { |
| 122 'clang%': 1, | 122 'clang%': 1, |
| 123 }, { | 123 }, { |
| 124 'clang%': 0, | 124 'clang%': 0, |
| 125 }], | 125 }], |
| 126 ], | 126 ], |
| 127 # Default ARM variable settings. | 127 # Default ARM variable settings. |
| 128 'arm_version%': 'default', | 128 'arm_version%': 'default', |
| 129 'arm_fpu%': 'vfpv3', | 129 'arm_fpu%': 'vfpv3', |
| 130 'arm_float_abi%': 'default', | 130 'arm_float_abi%': 'default', |
| 131 'arm_thumb': 'default', | 131 'arm_thumb': 'default', |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 ], | 444 ], |
| 445 }], | 445 }], |
| 446 ['clang==1 and OS=="win"', { | 446 ['clang==1 and OS=="win"', { |
| 447 'make_global_settings': [ | 447 'make_global_settings': [ |
| 448 # On Windows, gyp's ninja generator only looks at CC. | 448 # On Windows, gyp's ninja generator only looks at CC. |
| 449 ['CC', '<(make_clang_dir)/bin/clang-cl'], | 449 ['CC', '<(make_clang_dir)/bin/clang-cl'], |
| 450 ], | 450 ], |
| 451 }], | 451 }], |
| 452 ], | 452 ], |
| 453 } | 453 } |
| OLD | NEW |