| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |