| Index: components/tracing/BUILD.gn
|
| diff --git a/components/tracing/BUILD.gn b/components/tracing/BUILD.gn
|
| index 4638f3e1bc2f9fcd517d1befa3cfa814845adbba..573ea6c4a3202724650ae378f784b97d202b8fe9 100644
|
| --- a/components/tracing/BUILD.gn
|
| +++ b/components/tracing/BUILD.gn
|
| @@ -34,6 +34,7 @@ component("tracing") {
|
|
|
| deps = [
|
| "//base",
|
| + "//components/tracing/proto:protos",
|
| "//ipc",
|
| ]
|
|
|
| @@ -97,10 +98,10 @@ source_set("unit_tests") {
|
| ]
|
|
|
| deps = [
|
| - ":golden_protos_for_tests",
|
| ":proto_zero_testing_messages",
|
| ":tracing",
|
| "//base/test:test_support",
|
| + "//components/tracing/proto:golden_protos_for_tests",
|
| "//ipc",
|
| "//testing/gmock:gmock",
|
| "//testing/gtest",
|
| @@ -111,13 +112,3 @@ source_set("unit_tests") {
|
| deps += [ ":startup_tracing" ]
|
| }
|
| }
|
| -
|
| -# Official protobuf used by tests to verify that the Tracing V2 output is
|
| -# effectively proto-compatible.
|
| -proto_library("golden_protos_for_tests") {
|
| - visibility = [ ":unit_tests" ]
|
| - proto_out_dir = "components/tracing/test/golden_protos"
|
| - sources = [
|
| - "proto/events_chunk.proto",
|
| - ]
|
| -}
|
|
|