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 1918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1929 sources += [ | 1929 sources += [ |
1930 "$target_gen_dir/d8-js.cc", | 1930 "$target_gen_dir/d8-js.cc", |
1931 ] | 1931 ] |
1932 } | 1932 } |
1933 if (v8_enable_i18n_support) { | 1933 if (v8_enable_i18n_support) { |
1934 deps += [ "//third_party/icu" ] | 1934 deps += [ "//third_party/icu" ] |
1935 } | 1935 } |
1936 } | 1936 } |
1937 } | 1937 } |
1938 | 1938 |
| 1939 source_set("json_fuzzer") { |
| 1940 sources = [ |
| 1941 "test/fuzzer/json.cc", |
| 1942 ] |
| 1943 |
| 1944 deps = [ |
| 1945 ":fuzzer_support", |
| 1946 ] |
| 1947 |
| 1948 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1949 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1950 configs += [ |
| 1951 ":internal_config", |
| 1952 ":features", |
| 1953 ":toolchain", |
| 1954 ] |
| 1955 } |
| 1956 |
1939 source_set("parser_fuzzer") { | 1957 source_set("parser_fuzzer") { |
1940 sources = [ | 1958 sources = [ |
1941 "test/fuzzer/parser.cc", | 1959 "test/fuzzer/parser.cc", |
1942 ] | 1960 ] |
1943 | 1961 |
1944 deps = [ | 1962 deps = [ |
1945 ":fuzzer_support", | 1963 ":fuzzer_support", |
1946 ] | 1964 ] |
1947 | 1965 |
1948 configs -= [ "//build/config/compiler:chromium_code" ] | 1966 configs -= [ "//build/config/compiler:chromium_code" ] |
(...skipping 15 matching lines...) Expand all Loading... |
1964 ] | 1982 ] |
1965 | 1983 |
1966 configs -= [ "//build/config/compiler:chromium_code" ] | 1984 configs -= [ "//build/config/compiler:chromium_code" ] |
1967 configs += [ "//build/config/compiler:no_chromium_code" ] | 1985 configs += [ "//build/config/compiler:no_chromium_code" ] |
1968 configs += [ | 1986 configs += [ |
1969 ":internal_config", | 1987 ":internal_config", |
1970 ":features", | 1988 ":features", |
1971 ":toolchain", | 1989 ":toolchain", |
1972 ] | 1990 ] |
1973 } | 1991 } |
OLD | NEW |