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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 'fastbuild': 1, | 139 'fastbuild': 1, |
140 }], | 140 }], |
141 ], | 141 ], |
142 }], | 142 }], |
143 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87 ") and \ | 143 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87 ") and \ |
144 (OS=="linux" or OS=="mac")', { | 144 (OS=="linux" or OS=="mac")', { |
145 'v8_enable_gdbjit%': 1, | 145 'v8_enable_gdbjit%': 1, |
146 }, { | 146 }, { |
147 'v8_enable_gdbjit%': 0, | 147 'v8_enable_gdbjit%': 0, |
148 }], | 148 }], |
149 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ")', { | 149 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64 ") and \ |
150 (v8_target_arch!="x87")', { | |
151 | |
Weiliang
2015/04/09 06:55:06
remove this empty line.
| |
150 'clang%': 1, | 152 'clang%': 1, |
151 }, { | 153 }, { |
152 'clang%': 0, | 154 'clang%': 0, |
153 }], | 155 }], |
154 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', { | 156 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', { |
155 'host_clang%': '1', | 157 'host_clang%': '1', |
156 }, { | 158 }, { |
157 'host_clang%': '0', | 159 'host_clang%': '0', |
158 }], | 160 }], |
159 ], | 161 ], |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
582 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 584 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
583 'make_global_settings': [ | 585 'make_global_settings': [ |
584 ['CC_wrapper', '<(gomadir)/gomacc'], | 586 ['CC_wrapper', '<(gomadir)/gomacc'], |
585 ['CXX_wrapper', '<(gomadir)/gomacc'], | 587 ['CXX_wrapper', '<(gomadir)/gomacc'], |
586 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 588 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
587 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 589 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
588 ], | 590 ], |
589 }], | 591 }], |
590 ], | 592 ], |
591 } | 593 } |
OLD | NEW |