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

Side by Side Diff: content/test/fuzzer/BUILD.gn

Issue 2788093002: Add missing header files to GN files (3 of N) (Closed)
Patch Set: manual fixes Created 3 years, 8 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 | « components/os_crypt/BUILD.gn ('k') | ios/chrome/browser/tabs/BUILD.gn » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 # Fuzzers for content/ components. 5 # Fuzzers for content/ components.
6 6
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//third_party/protobuf/proto_library.gni") 8 import("//third_party/protobuf/proto_library.gni")
9 9
10 # Empty group for package discovery. 10 # Empty group for package discovery.
11 group("fuzzer") { 11 group("fuzzer") {
12 } 12 }
13 13
14 # gn complains of private dependencies in component build. 14 # gn complains of private dependencies in component build.
15 if (!is_component_build) { 15 if (!is_component_build) {
16 source_set("fuzzer_support") { 16 source_set("fuzzer_support") {
17 sources = [ 17 sources = [
18 "fuzzer_support.cc", 18 "fuzzer_support.cc",
19 "fuzzer_support.h",
19 ] 20 ]
20 public_deps = [ 21 public_deps = [
21 "//base", 22 "//base",
22 "//content/renderer:for_content_tests", 23 "//content/renderer:for_content_tests",
23 "//content/shell:content_shell_lib", 24 "//content/shell:content_shell_lib",
24 "//content/test:test_support", 25 "//content/test:test_support",
25 "//gin", 26 "//gin",
26 ] 27 ]
27 testonly = true 28 testonly = true
28 } 29 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ] 81 ]
81 } 82 }
82 83
83 proto_library("html_tree_proto") { 84 proto_library("html_tree_proto") {
84 sources = [ 85 sources = [
85 "html_tree.proto", 86 "html_tree.proto",
86 ] 87 ]
87 testonly = true 88 testonly = true
88 } 89 }
89 } 90 }
OLDNEW
« no previous file with comments | « components/os_crypt/BUILD.gn ('k') | ios/chrome/browser/tabs/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698