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 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1872 "src/base/bits.h", | 1872 "src/base/bits.h", |
1873 "src/base/build_config.h", | 1873 "src/base/build_config.h", |
1874 "src/base/cpu.cc", | 1874 "src/base/cpu.cc", |
1875 "src/base/cpu.h", | 1875 "src/base/cpu.h", |
1876 "src/base/division-by-constant.cc", | 1876 "src/base/division-by-constant.cc", |
1877 "src/base/division-by-constant.h", | 1877 "src/base/division-by-constant.h", |
1878 "src/base/flags.h", | 1878 "src/base/flags.h", |
1879 "src/base/format-macros.h", | 1879 "src/base/format-macros.h", |
1880 "src/base/functional.cc", | 1880 "src/base/functional.cc", |
1881 "src/base/functional.h", | 1881 "src/base/functional.h", |
| 1882 "src/base/hashmap.cc", |
| 1883 "src/base/hashmap.h", |
1882 "src/base/iterator.h", | 1884 "src/base/iterator.h", |
1883 "src/base/lazy-instance.h", | 1885 "src/base/lazy-instance.h", |
1884 "src/base/logging.cc", | 1886 "src/base/logging.cc", |
1885 "src/base/logging.h", | 1887 "src/base/logging.h", |
1886 "src/base/macros.h", | 1888 "src/base/macros.h", |
1887 "src/base/once.cc", | 1889 "src/base/once.cc", |
1888 "src/base/once.h", | 1890 "src/base/once.h", |
1889 "src/base/platform/condition-variable.cc", | 1891 "src/base/platform/condition-variable.cc", |
1890 "src/base/platform/condition-variable.h", | 1892 "src/base/platform/condition-variable.h", |
1891 "src/base/platform/elapsed-timer.h", | 1893 "src/base/platform/elapsed-timer.h", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1971 | 1973 |
1972 public_configs = [ ":libplatform_config" ] | 1974 public_configs = [ ":libplatform_config" ] |
1973 | 1975 |
1974 deps = [ | 1976 deps = [ |
1975 ":v8_libbase", | 1977 ":v8_libbase", |
1976 ] | 1978 ] |
1977 } | 1979 } |
1978 | 1980 |
1979 v8_source_set("v8_libsampler") { | 1981 v8_source_set("v8_libsampler") { |
1980 sources = [ | 1982 sources = [ |
1981 "src/libsampler/hashmap.h", | |
1982 "src/libsampler/utils.h", | |
1983 "src/libsampler/v8-sampler.cc", | 1983 "src/libsampler/v8-sampler.cc", |
1984 "src/libsampler/v8-sampler.h", | 1984 "src/libsampler/v8-sampler.h", |
1985 ] | 1985 ] |
1986 | 1986 |
1987 configs = [ ":internal_config_base" ] | 1987 configs = [ ":internal_config_base" ] |
1988 | 1988 |
1989 public_configs = [ ":libsampler_config" ] | 1989 public_configs = [ ":libsampler_config" ] |
1990 | 1990 |
1991 deps = [ | 1991 deps = [ |
1992 ":v8_libbase", | 1992 ":v8_libbase", |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2203 sources = [ | 2203 sources = [ |
2204 "test/fuzzer/wasm-asmjs.cc", | 2204 "test/fuzzer/wasm-asmjs.cc", |
2205 ] | 2205 ] |
2206 | 2206 |
2207 deps = [ | 2207 deps = [ |
2208 ":fuzzer_support", | 2208 ":fuzzer_support", |
2209 ] | 2209 ] |
2210 | 2210 |
2211 configs = [ ":internal_config" ] | 2211 configs = [ ":internal_config" ] |
2212 } | 2212 } |
OLD | NEW |