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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 ['OS=="win" and use_goma==1', { | 172 ['OS=="win" and use_goma==1', { |
173 # goma doesn't support pch yet. | 173 # goma doesn't support pch yet. |
174 'chromium_win_pch': 0, | 174 'chromium_win_pch': 0, |
175 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. | 175 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. |
176 'conditions': [ | 176 'conditions': [ |
177 ['win_z7==0 and fastbuild==0', { | 177 ['win_z7==0 and fastbuild==0', { |
178 'fastbuild': 1, | 178 'fastbuild': 1, |
179 }], | 179 }], |
180 ], | 180 ], |
181 }], | 181 }], |
182 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ | 182 ['((v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x8
7") and \ |
183 (OS=="linux" or OS=="mac")', { | 183 (OS=="linux" or OS=="mac")) or (v8_target_arch=="ppc64" and OS=="linux")
', { |
184 'v8_enable_gdbjit%': 1, | 184 'v8_enable_gdbjit%': 1, |
185 }, { | 185 }, { |
186 'v8_enable_gdbjit%': 0, | 186 'v8_enable_gdbjit%': 0, |
187 }], | 187 }], |
188 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64
") and \ | 188 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64
") and \ |
189 (v8_target_arch!="x87" and v8_target_arch!="x32")', { | 189 (v8_target_arch!="x87" and v8_target_arch!="x32")', { |
190 'clang%': 1, | 190 'clang%': 1, |
191 }, { | 191 }, { |
192 'clang%': 0, | 192 'clang%': 0, |
193 }], | 193 }], |
(...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 1139 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
1140 'make_global_settings': [ | 1140 'make_global_settings': [ |
1141 ['CC_wrapper', '<(gomadir)/gomacc'], | 1141 ['CC_wrapper', '<(gomadir)/gomacc'], |
1142 ['CXX_wrapper', '<(gomadir)/gomacc'], | 1142 ['CXX_wrapper', '<(gomadir)/gomacc'], |
1143 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 1143 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
1144 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 1144 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
1145 ], | 1145 ], |
1146 }], | 1146 }], |
1147 ], | 1147 ], |
1148 } | 1148 } |
OLD | NEW |