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 1857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1868 "src/ia32/cpu-ia32.cc", | 1868 "src/ia32/cpu-ia32.cc", |
1869 "src/ia32/deoptimizer-ia32.cc", | 1869 "src/ia32/deoptimizer-ia32.cc", |
1870 "src/ia32/disasm-ia32.cc", | 1870 "src/ia32/disasm-ia32.cc", |
1871 "src/ia32/frames-ia32.cc", | 1871 "src/ia32/frames-ia32.cc", |
1872 "src/ia32/frames-ia32.h", | 1872 "src/ia32/frames-ia32.h", |
1873 "src/ia32/interface-descriptors-ia32.cc", | 1873 "src/ia32/interface-descriptors-ia32.cc", |
1874 "src/ia32/macro-assembler-ia32.cc", | 1874 "src/ia32/macro-assembler-ia32.cc", |
1875 "src/ia32/macro-assembler-ia32.h", | 1875 "src/ia32/macro-assembler-ia32.h", |
1876 "src/ia32/simulator-ia32.cc", | 1876 "src/ia32/simulator-ia32.cc", |
1877 "src/ia32/simulator-ia32.h", | 1877 "src/ia32/simulator-ia32.h", |
1878 "src/ia32/sse-instr.h", | |
1879 "src/ic/ia32/access-compiler-ia32.cc", | 1878 "src/ic/ia32/access-compiler-ia32.cc", |
1880 "src/ic/ia32/handler-compiler-ia32.cc", | 1879 "src/ic/ia32/handler-compiler-ia32.cc", |
1881 "src/ic/ia32/ic-ia32.cc", | 1880 "src/ic/ia32/ic-ia32.cc", |
1882 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", | 1881 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", |
1883 "src/regexp/ia32/regexp-macro-assembler-ia32.h", | 1882 "src/regexp/ia32/regexp-macro-assembler-ia32.h", |
1884 ] | 1883 ] |
1885 } else if (v8_current_cpu == "x64") { | 1884 } else if (v8_current_cpu == "x64") { |
1886 sources += [ ### gcmole(arch:x64) ### | 1885 sources += [ ### gcmole(arch:x64) ### |
1887 "src/builtins/x64/builtins-x64.cc", | 1886 "src/builtins/x64/builtins-x64.cc", |
1888 "src/compiler/x64/code-generator-x64.cc", | 1887 "src/compiler/x64/code-generator-x64.cc", |
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3116 ] | 3115 ] |
3117 | 3116 |
3118 configs = [ | 3117 configs = [ |
3119 ":external_config", | 3118 ":external_config", |
3120 ":internal_config_base", | 3119 ":internal_config_base", |
3121 ] | 3120 ] |
3122 } | 3121 } |
3123 | 3122 |
3124 v8_fuzzer("wasm_compile_fuzzer") { | 3123 v8_fuzzer("wasm_compile_fuzzer") { |
3125 } | 3124 } |
OLD | NEW |