OLD | NEW |
1 # Copyright 2010 the V8 project authors. All rights reserved. | 1 # Copyright 2010 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 24 matching lines...) Expand all Loading... |
35 ['v8_target_arch=="arm"', { | 35 ['v8_target_arch=="arm"', { |
36 'defines': [ | 36 'defines': [ |
37 'V8_TARGET_ARCH_ARM', | 37 'V8_TARGET_ARCH_ARM', |
38 ], | 38 ], |
39 }], | 39 }], |
40 ['v8_target_arch=="ia32"', { | 40 ['v8_target_arch=="ia32"', { |
41 'defines': [ | 41 'defines': [ |
42 'V8_TARGET_ARCH_IA32', | 42 'V8_TARGET_ARCH_IA32', |
43 ], | 43 ], |
44 }], | 44 }], |
| 45 ['v8_target_arch=="mips"', { |
| 46 'defines': [ |
| 47 'V8_TARGET_ARCH_MIPS', |
| 48 ], |
| 49 }], |
45 ['v8_target_arch=="x64"', { | 50 ['v8_target_arch=="x64"', { |
46 'defines': [ | 51 'defines': [ |
47 'V8_TARGET_ARCH_X64', | 52 'V8_TARGET_ARCH_X64', |
48 ], | 53 ], |
49 }], | 54 }], |
50 ], | 55 ], |
51 }], | 56 }], |
52 ], | 57 ], |
53 }, | 58 }, |
54 'targets': [ | 59 'targets': [ |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 }], | 135 }], |
131 ['v8_target_arch=="arm"', { | 136 ['v8_target_arch=="arm"', { |
132 'sources': [ | 137 'sources': [ |
133 'test-assembler-arm.cc', | 138 'test-assembler-arm.cc', |
134 'test-disasm-arm.cc' | 139 'test-disasm-arm.cc' |
135 ], | 140 ], |
136 }], | 141 }], |
137 ['v8_target_arch=="mips"', { | 142 ['v8_target_arch=="mips"', { |
138 'sources': [ | 143 'sources': [ |
139 'test-assembler-mips.cc', | 144 'test-assembler-mips.cc', |
140 'test-mips.cc', | 145 'test-disasm-mips.cc', |
141 ], | 146 ], |
142 }], | 147 }], |
143 [ 'OS=="linux"', { | 148 [ 'OS=="linux"', { |
144 'sources': [ | 149 'sources': [ |
145 'test-platform-linux.cc', | 150 'test-platform-linux.cc', |
146 ], | 151 ], |
147 }], | 152 }], |
148 [ 'OS=="mac"', { | 153 [ 'OS=="mac"', { |
149 'sources': [ | 154 'sources': [ |
150 'test-platform-macos.cc', | 155 'test-platform-macos.cc', |
151 ], | 156 ], |
152 }], | 157 }], |
153 [ 'OS=="win"', { | 158 [ 'OS=="win"', { |
154 'sources': [ | 159 'sources': [ |
155 'test-platform-win32.cc', | 160 'test-platform-win32.cc', |
156 ], | 161 ], |
157 }], | 162 }], |
158 ], | 163 ], |
159 }, | 164 }, |
160 ], | 165 ], |
161 } | 166 } |
OLD | NEW |