| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'test-typing-reset.cc', | 178 'test-typing-reset.cc', |
| 179 'test-unbound-queue.cc', | 179 'test-unbound-queue.cc', |
| 180 'test-unboxed-doubles.cc', | 180 'test-unboxed-doubles.cc', |
| 181 'test-unique.cc', | 181 'test-unique.cc', |
| 182 'test-unscopables-hidden-prototype.cc', | 182 'test-unscopables-hidden-prototype.cc', |
| 183 'test-utils.cc', | 183 'test-utils.cc', |
| 184 'test-version.cc', | 184 'test-version.cc', |
| 185 'test-weakmaps.cc', | 185 'test-weakmaps.cc', |
| 186 'test-weaksets.cc', | 186 'test-weaksets.cc', |
| 187 'trace-extension.cc', | 187 'trace-extension.cc', |
| 188 'wasm/test-run-wasm.cc', |
| 189 'wasm/test-run-wasm-module.cc', |
| 190 'wasm/test-signatures.h', |
| 188 ], | 191 ], |
| 189 'conditions': [ | 192 'conditions': [ |
| 190 ['v8_target_arch=="ia32"', { | 193 ['v8_target_arch=="ia32"', { |
| 191 'sources': [ ### gcmole(arch:ia32) ### | 194 'sources': [ ### gcmole(arch:ia32) ### |
| 192 'test-assembler-ia32.cc', | 195 'test-assembler-ia32.cc', |
| 193 'test-code-stubs.cc', | 196 'test-code-stubs.cc', |
| 194 'test-code-stubs-ia32.cc', | 197 'test-code-stubs-ia32.cc', |
| 195 'test-disasm-ia32.cc', | 198 'test-disasm-ia32.cc', |
| 196 'test-macro-assembler-ia32.cc', | 199 'test-macro-assembler-ia32.cc', |
| 197 'test-log-stack-tracer.cc' | 200 'test-log-stack-tracer.cc' |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 ['OS=="aix"', { | 297 ['OS=="aix"', { |
| 295 'ldflags': [ '-Wl,-bbigtoc' ], | 298 'ldflags': [ '-Wl,-bbigtoc' ], |
| 296 }], | 299 }], |
| 297 ['component=="shared_library"', { | 300 ['component=="shared_library"', { |
| 298 # cctest can't be built against a shared library, so we need to | 301 # cctest can't be built against a shared library, so we need to |
| 299 # depend on the underlying static target in that case. | 302 # depend on the underlying static target in that case. |
| 300 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 303 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
| 301 }, { | 304 }, { |
| 302 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 305 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
| 303 }], | 306 }], |
| 304 ['v8_wasm!=0', { | |
| 305 'sources': [ | |
| 306 'wasm/test-run-wasm.cc', | |
| 307 'wasm/test-run-wasm-module.cc', | |
| 308 'wasm/test-signatures.h', | |
| 309 ], | |
| 310 }], | |
| 311 ], | 307 ], |
| 312 }, | 308 }, |
| 313 { | 309 { |
| 314 'target_name': 'resources', | 310 'target_name': 'resources', |
| 315 'type': 'none', | 311 'type': 'none', |
| 316 'variables': { | 312 'variables': { |
| 317 'file_list': [ | 313 'file_list': [ |
| 318 '../../tools/splaytree.js', | 314 '../../tools/splaytree.js', |
| 319 '../../tools/codemap.js', | 315 '../../tools/codemap.js', |
| 320 '../../tools/csvparser.js', | 316 '../../tools/csvparser.js', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 '../../build/isolate.gypi', | 355 '../../build/isolate.gypi', |
| 360 ], | 356 ], |
| 361 'sources': [ | 357 'sources': [ |
| 362 'cctest.isolate', | 358 'cctest.isolate', |
| 363 ], | 359 ], |
| 364 }, | 360 }, |
| 365 ], | 361 ], |
| 366 }], | 362 }], |
| 367 ], | 363 ], |
| 368 } | 364 } |
| OLD | NEW |