| 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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
| 8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1443 "src/objects-printer.cc", | 1443 "src/objects-printer.cc", |
| 1444 "src/objects.cc", | 1444 "src/objects.cc", |
| 1445 "src/objects.h", | 1445 "src/objects.h", |
| 1446 "src/ostreams.cc", | 1446 "src/ostreams.cc", |
| 1447 "src/ostreams.h", | 1447 "src/ostreams.h", |
| 1448 "src/parsing/expression-classifier.h", | 1448 "src/parsing/expression-classifier.h", |
| 1449 "src/parsing/func-name-inferrer.cc", | 1449 "src/parsing/func-name-inferrer.cc", |
| 1450 "src/parsing/func-name-inferrer.h", | 1450 "src/parsing/func-name-inferrer.h", |
| 1451 "src/parsing/parameter-initializer-rewriter.cc", | 1451 "src/parsing/parameter-initializer-rewriter.cc", |
| 1452 "src/parsing/parameter-initializer-rewriter.h", | 1452 "src/parsing/parameter-initializer-rewriter.h", |
| 1453 "src/parsing/parse-info.cc", |
| 1454 "src/parsing/parse-info.h", |
| 1453 "src/parsing/parser-base.h", | 1455 "src/parsing/parser-base.h", |
| 1454 "src/parsing/parser.cc", | 1456 "src/parsing/parser.cc", |
| 1455 "src/parsing/parser.h", | 1457 "src/parsing/parser.h", |
| 1456 "src/parsing/pattern-rewriter.cc", | 1458 "src/parsing/pattern-rewriter.cc", |
| 1457 "src/parsing/preparse-data-format.h", | 1459 "src/parsing/preparse-data-format.h", |
| 1458 "src/parsing/preparse-data.cc", | 1460 "src/parsing/preparse-data.cc", |
| 1459 "src/parsing/preparse-data.h", | 1461 "src/parsing/preparse-data.h", |
| 1460 "src/parsing/preparser.cc", | 1462 "src/parsing/preparser.cc", |
| 1461 "src/parsing/preparser.h", | 1463 "src/parsing/preparser.h", |
| 1462 "src/parsing/rewriter.cc", | 1464 "src/parsing/rewriter.cc", |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2075 "src/base/sys-info.h", | 2077 "src/base/sys-info.h", |
| 2076 "src/base/utils/random-number-generator.cc", | 2078 "src/base/utils/random-number-generator.cc", |
| 2077 "src/base/utils/random-number-generator.h", | 2079 "src/base/utils/random-number-generator.h", |
| 2078 ] | 2080 ] |
| 2079 | 2081 |
| 2080 configs = [ ":internal_config_base" ] | 2082 configs = [ ":internal_config_base" ] |
| 2081 | 2083 |
| 2082 defines = [] | 2084 defines = [] |
| 2083 | 2085 |
| 2084 if (is_posix) { | 2086 if (is_posix) { |
| 2085 sources += [ | 2087 sources += [ "src/base/platform/platform-posix.cc" ] |
| 2086 "src/base/platform/platform-posix.cc", | |
| 2087 ] | |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 if (is_linux) { | 2090 if (is_linux) { |
| 2091 sources += [ | 2091 sources += [ |
| 2092 "src/base/debug/stack_trace_posix.cc", | 2092 "src/base/debug/stack_trace_posix.cc", |
| 2093 "src/base/platform/platform-linux.cc", | 2093 "src/base/platform/platform-linux.cc", |
| 2094 ] | 2094 ] |
| 2095 | 2095 |
| 2096 libs = [ | 2096 libs = [ |
| 2097 "dl", | 2097 "dl", |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2565 | 2565 |
| 2566 deps = [ | 2566 deps = [ |
| 2567 ":fuzzer_support", | 2567 ":fuzzer_support", |
| 2568 ] | 2568 ] |
| 2569 | 2569 |
| 2570 configs = [ ":internal_config" ] | 2570 configs = [ ":internal_config" ] |
| 2571 } | 2571 } |
| 2572 | 2572 |
| 2573 v8_fuzzer("wasm_asmjs_fuzzer") { | 2573 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2574 } | 2574 } |
| OLD | NEW |