| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 'trace-extension.cc', | 202 'trace-extension.cc', |
| 203 'trace-extension.h', | 203 'trace-extension.h', |
| 204 'types-fuzz.h', | 204 'types-fuzz.h', |
| 205 'wasm/test-run-wasm.cc', | 205 'wasm/test-run-wasm.cc', |
| 206 'wasm/test-run-wasm-64.cc', | 206 'wasm/test-run-wasm-64.cc', |
| 207 'wasm/test-run-wasm-asmjs.cc', | 207 'wasm/test-run-wasm-asmjs.cc', |
| 208 'wasm/test-run-wasm-interpreter.cc', | 208 'wasm/test-run-wasm-interpreter.cc', |
| 209 'wasm/test-run-wasm-js.cc', | 209 'wasm/test-run-wasm-js.cc', |
| 210 'wasm/test-run-wasm-module.cc', | 210 'wasm/test-run-wasm-module.cc', |
| 211 'wasm/test-run-wasm-relocation.cc', | 211 'wasm/test-run-wasm-relocation.cc', |
| 212 'wasm/test-signatures.h', | |
| 213 'wasm/test-wasm-function-name-table.cc', | 212 'wasm/test-wasm-function-name-table.cc', |
| 214 'wasm/test-wasm-stack.cc', | 213 'wasm/test-wasm-stack.cc', |
| 215 'wasm/test-wasm-trap-position.cc', | 214 'wasm/test-wasm-trap-position.cc', |
| 216 'wasm/wasm-run-utils.h', | 215 'wasm/wasm-run-utils.h', |
| 217 ], | 216 ], |
| 218 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ### | 217 'cctest_sources_ia32': [ ### gcmole(arch:ia32) ### |
| 219 'test-assembler-ia32.cc', | 218 'test-assembler-ia32.cc', |
| 220 'test-code-stubs.cc', | 219 'test-code-stubs.cc', |
| 221 'test-code-stubs.h', | 220 'test-code-stubs.h', |
| 222 'test-code-stubs-ia32.cc', | 221 'test-code-stubs-ia32.cc', |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 'type': 'executable', | 319 'type': 'executable', |
| 321 'dependencies': [ | 320 'dependencies': [ |
| 322 'resources', | 321 'resources', |
| 323 '../../src/v8.gyp:v8_libbase', | 322 '../../src/v8.gyp:v8_libbase', |
| 324 '../../src/v8.gyp:v8_libplatform', | 323 '../../src/v8.gyp:v8_libplatform', |
| 325 ], | 324 ], |
| 326 'include_dirs': [ | 325 'include_dirs': [ |
| 327 '../..', | 326 '../..', |
| 328 ], | 327 ], |
| 329 'sources': [ | 328 'sources': [ |
| 329 '../common/wasm/test-signatures.h', |
| 330 '../common/wasm/wasm-module-runner.cc', | 330 '../common/wasm/wasm-module-runner.cc', |
| 331 '../common/wasm/wasm-module-runner.h', | 331 '../common/wasm/wasm-module-runner.h', |
| 332 '<@(cctest_sources)', | 332 '<@(cctest_sources)', |
| 333 '<(generated_file)', | 333 '<(generated_file)', |
| 334 ], | 334 ], |
| 335 'conditions': [ | 335 'conditions': [ |
| 336 ['v8_target_arch=="ia32"', { | 336 ['v8_target_arch=="ia32"', { |
| 337 'sources': [ | 337 'sources': [ |
| 338 '<@(cctest_sources_ia32)', | 338 '<@(cctest_sources_ia32)', |
| 339 ], | 339 ], |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 '../../gypfiles/isolate.gypi', | 518 '../../gypfiles/isolate.gypi', |
| 519 ], | 519 ], |
| 520 'sources': [ | 520 'sources': [ |
| 521 'cctest.isolate', | 521 'cctest.isolate', |
| 522 ], | 522 ], |
| 523 }, | 523 }, |
| 524 ], | 524 ], |
| 525 }], | 525 }], |
| 526 ], | 526 ], |
| 527 } | 527 } |
| OLD | NEW |