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 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1873 "src/ia32/cpu-ia32.cc", | 1873 "src/ia32/cpu-ia32.cc", |
1874 "src/ia32/deoptimizer-ia32.cc", | 1874 "src/ia32/deoptimizer-ia32.cc", |
1875 "src/ia32/disasm-ia32.cc", | 1875 "src/ia32/disasm-ia32.cc", |
1876 "src/ia32/frames-ia32.cc", | 1876 "src/ia32/frames-ia32.cc", |
1877 "src/ia32/frames-ia32.h", | 1877 "src/ia32/frames-ia32.h", |
1878 "src/ia32/interface-descriptors-ia32.cc", | 1878 "src/ia32/interface-descriptors-ia32.cc", |
1879 "src/ia32/macro-assembler-ia32.cc", | 1879 "src/ia32/macro-assembler-ia32.cc", |
1880 "src/ia32/macro-assembler-ia32.h", | 1880 "src/ia32/macro-assembler-ia32.h", |
1881 "src/ia32/simulator-ia32.cc", | 1881 "src/ia32/simulator-ia32.cc", |
1882 "src/ia32/simulator-ia32.h", | 1882 "src/ia32/simulator-ia32.h", |
| 1883 "src/ia32/sse-instr.h", |
1883 "src/ic/ia32/access-compiler-ia32.cc", | 1884 "src/ic/ia32/access-compiler-ia32.cc", |
1884 "src/ic/ia32/handler-compiler-ia32.cc", | 1885 "src/ic/ia32/handler-compiler-ia32.cc", |
1885 "src/ic/ia32/ic-ia32.cc", | 1886 "src/ic/ia32/ic-ia32.cc", |
1886 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", | 1887 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", |
1887 "src/regexp/ia32/regexp-macro-assembler-ia32.h", | 1888 "src/regexp/ia32/regexp-macro-assembler-ia32.h", |
1888 ] | 1889 ] |
1889 } else if (v8_current_cpu == "x64") { | 1890 } else if (v8_current_cpu == "x64") { |
1890 sources += [ ### gcmole(arch:x64) ### | 1891 sources += [ ### gcmole(arch:x64) ### |
1891 "src/builtins/x64/builtins-x64.cc", | 1892 "src/builtins/x64/builtins-x64.cc", |
1892 "src/compiler/x64/code-generator-x64.cc", | 1893 "src/compiler/x64/code-generator-x64.cc", |
(...skipping 1207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3100 ] | 3101 ] |
3101 | 3102 |
3102 configs = [ | 3103 configs = [ |
3103 ":external_config", | 3104 ":external_config", |
3104 ":internal_config_base", | 3105 ":internal_config_base", |
3105 ] | 3106 ] |
3106 } | 3107 } |
3107 | 3108 |
3108 v8_fuzzer("wasm_data_section_fuzzer") { | 3109 v8_fuzzer("wasm_data_section_fuzzer") { |
3109 } | 3110 } |
OLD | NEW |