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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
844 | 844 |
845 sources = [ | 845 sources = [ |
846 "src/snapshot/natives-external.cc", | 846 "src/snapshot/natives-external.cc", |
847 "src/snapshot/snapshot-external.cc", | 847 "src/snapshot/snapshot-external.cc", |
848 ] | 848 ] |
849 | 849 |
850 configs = [ ":internal_config" ] | 850 configs = [ ":internal_config" ] |
851 } | 851 } |
852 } | 852 } |
853 | 853 |
854 # This is split out to be a non-code containing target that the Chromium browser | |
855 # DLL can depend upon to get only a version string. | |
856 v8_source_set("v8_version") { | |
857 configs = [ ":internal_config" ] | |
858 | |
859 sources = [ | |
860 "include/v8-version.h", | |
861 ] | |
862 } | |
863 | |
864 v8_source_set("v8_base") { | 854 v8_source_set("v8_base") { |
865 visibility = [ ":*" ] # Only targets in this file can depend on this. | 855 visibility = [ ":*" ] # Only targets in this file can depend on this. |
866 | 856 |
867 sources = [ | 857 sources = [ |
868 "//base/trace_event/common/trace_event_common.h", | 858 "//base/trace_event/common/trace_event_common.h", |
869 | 859 |
870 ### gcmole(all) ### | 860 ### gcmole(all) ### |
871 "include/v8-debug.h", | 861 "include/v8-debug.h", |
872 "include/v8-experimental.h", | 862 "include/v8-experimental.h", |
873 "include/v8-platform.h", | 863 "include/v8-platform.h", |
874 "include/v8-profiler.h", | 864 "include/v8-profiler.h", |
875 "include/v8-testing.h", | 865 "include/v8-testing.h", |
876 "include/v8-util.h", | 866 "include/v8-util.h", |
| 867 "include/v8-version.h", |
877 "include/v8.h", | 868 "include/v8.h", |
878 "include/v8config.h", | 869 "include/v8config.h", |
879 "src/accessors.cc", | 870 "src/accessors.cc", |
880 "src/accessors.h", | 871 "src/accessors.h", |
881 "src/address-map.cc", | 872 "src/address-map.cc", |
882 "src/address-map.h", | 873 "src/address-map.h", |
883 "src/allocation-site-scopes.cc", | 874 "src/allocation-site-scopes.cc", |
884 "src/allocation-site-scopes.h", | 875 "src/allocation-site-scopes.h", |
885 "src/allocation.cc", | 876 "src/allocation.cc", |
886 "src/allocation.h", | 877 "src/allocation.h", |
(...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2191 "src/x87/simulator-x87.h", | 2182 "src/x87/simulator-x87.h", |
2192 ] | 2183 ] |
2193 } | 2184 } |
2194 | 2185 |
2195 configs = [ ":internal_config" ] | 2186 configs = [ ":internal_config" ] |
2196 | 2187 |
2197 defines = [] | 2188 defines = [] |
2198 deps = [ | 2189 deps = [ |
2199 ":v8_libbase", | 2190 ":v8_libbase", |
2200 ":v8_libsampler", | 2191 ":v8_libsampler", |
2201 ":v8_version", | |
2202 ] | 2192 ] |
2203 | 2193 |
2204 sources += [ v8_generated_peephole_source ] | 2194 sources += [ v8_generated_peephole_source ] |
2205 deps += [ ":run_mkpeephole" ] | 2195 deps += [ ":run_mkpeephole" ] |
2206 | 2196 |
2207 if (is_win) { | 2197 if (is_win) { |
2208 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 2198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
2209 cflags = [ "/wd4267" ] | 2199 cflags = [ "/wd4267" ] |
2210 } | 2200 } |
2211 | 2201 |
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3029 ] | 3019 ] |
3030 | 3020 |
3031 configs = [ | 3021 configs = [ |
3032 ":external_config", | 3022 ":external_config", |
3033 ":internal_config_base", | 3023 ":internal_config_base", |
3034 ] | 3024 ] |
3035 } | 3025 } |
3036 | 3026 |
3037 v8_fuzzer("wasm_data_section_fuzzer") { | 3027 v8_fuzzer("wasm_data_section_fuzzer") { |
3038 } | 3028 } |
OLD | NEW |