| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 # NOSORT | 349 # NOSORT |
| 350 sources = [ | 350 sources = [ |
| 351 "src/js/macros.py", | 351 "src/js/macros.py", |
| 352 "src/messages.h", | 352 "src/messages.h", |
| 353 "src/js/prologue.js", | 353 "src/js/prologue.js", |
| 354 "src/js/runtime.js", | 354 "src/js/runtime.js", |
| 355 "src/js/v8natives.js", | 355 "src/js/v8natives.js", |
| 356 "src/js/symbol.js", | 356 "src/js/symbol.js", |
| 357 "src/js/array.js", | 357 "src/js/array.js", |
| 358 "src/js/string.js", | 358 "src/js/string.js", |
| 359 "src/js/uri.js", | |
| 360 "src/js/math.js", | 359 "src/js/math.js", |
| 361 "src/third_party/fdlibm/fdlibm.js", | 360 "src/third_party/fdlibm/fdlibm.js", |
| 362 "src/js/regexp.js", | 361 "src/js/regexp.js", |
| 363 "src/js/arraybuffer.js", | 362 "src/js/arraybuffer.js", |
| 364 "src/js/typedarray.js", | 363 "src/js/typedarray.js", |
| 365 "src/js/iterator-prototype.js", | 364 "src/js/iterator-prototype.js", |
| 366 "src/js/collection.js", | 365 "src/js/collection.js", |
| 367 "src/js/weak-collection.js", | 366 "src/js/weak-collection.js", |
| 368 "src/js/collection-iterator.js", | 367 "src/js/collection-iterator.js", |
| 369 "src/js/promise.js", | 368 "src/js/promise.js", |
| (...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1393 "src/runtime/runtime-object.cc", | 1392 "src/runtime/runtime-object.cc", |
| 1394 "src/runtime/runtime-operators.cc", | 1393 "src/runtime/runtime-operators.cc", |
| 1395 "src/runtime/runtime-proxy.cc", | 1394 "src/runtime/runtime-proxy.cc", |
| 1396 "src/runtime/runtime-regexp.cc", | 1395 "src/runtime/runtime-regexp.cc", |
| 1397 "src/runtime/runtime-scopes.cc", | 1396 "src/runtime/runtime-scopes.cc", |
| 1398 "src/runtime/runtime-simd.cc", | 1397 "src/runtime/runtime-simd.cc", |
| 1399 "src/runtime/runtime-strings.cc", | 1398 "src/runtime/runtime-strings.cc", |
| 1400 "src/runtime/runtime-symbol.cc", | 1399 "src/runtime/runtime-symbol.cc", |
| 1401 "src/runtime/runtime-test.cc", | 1400 "src/runtime/runtime-test.cc", |
| 1402 "src/runtime/runtime-typedarray.cc", | 1401 "src/runtime/runtime-typedarray.cc", |
| 1403 "src/runtime/runtime-uri.cc", | |
| 1404 "src/runtime/runtime-utils.h", | 1402 "src/runtime/runtime-utils.h", |
| 1405 "src/runtime/runtime.cc", | 1403 "src/runtime/runtime.cc", |
| 1406 "src/runtime/runtime.h", | 1404 "src/runtime/runtime.h", |
| 1407 "src/safepoint-table.cc", | 1405 "src/safepoint-table.cc", |
| 1408 "src/safepoint-table.h", | 1406 "src/safepoint-table.h", |
| 1409 "src/signature.h", | 1407 "src/signature.h", |
| 1410 "src/simulator.h", | 1408 "src/simulator.h", |
| 1411 "src/small-pointer-list.h", | 1409 "src/small-pointer-list.h", |
| 1412 "src/snapshot/code-serializer.cc", | 1410 "src/snapshot/code-serializer.cc", |
| 1413 "src/snapshot/code-serializer.h", | 1411 "src/snapshot/code-serializer.h", |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2201 sources = [ | 2199 sources = [ |
| 2202 "test/fuzzer/wasm-asmjs.cc", | 2200 "test/fuzzer/wasm-asmjs.cc", |
| 2203 ] | 2201 ] |
| 2204 | 2202 |
| 2205 deps = [ | 2203 deps = [ |
| 2206 ":fuzzer_support", | 2204 ":fuzzer_support", |
| 2207 ] | 2205 ] |
| 2208 | 2206 |
| 2209 configs = [ ":internal_config" ] | 2207 configs = [ ":internal_config" ] |
| 2210 } | 2208 } |
| OLD | NEW |