Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1486)

Side by Side Diff: BUILD.gn

Issue 1655853002: [regexp] add fuzzer support for regexp parser and compiler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix fuzzer.gyp Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1935 matching lines...) Expand 10 before | Expand all | Expand 10 after
1946 ] 1946 ]
1947 1947
1948 configs -= [ "//build/config/compiler:chromium_code" ] 1948 configs -= [ "//build/config/compiler:chromium_code" ]
1949 configs += [ "//build/config/compiler:no_chromium_code" ] 1949 configs += [ "//build/config/compiler:no_chromium_code" ]
1950 configs += [ 1950 configs += [
1951 ":internal_config", 1951 ":internal_config",
1952 ":features", 1952 ":features",
1953 ":toolchain", 1953 ":toolchain",
1954 ] 1954 ]
1955 } 1955 }
1956
1957 source_set("regexp_fuzzer") {
1958 sources = [
1959 "test/fuzzer/regexp.cc",
1960 ]
1961
1962 deps = [
1963 ":fuzzer_support",
1964 ]
1965
1966 configs -= [ "//build/config/compiler:chromium_code" ]
1967 configs += [ "//build/config/compiler:no_chromium_code" ]
1968 configs += [
1969 ":internal_config",
1970 ":features",
1971 ":toolchain",
1972 ]
1973 }
OLDNEW
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698