diff options
Diffstat (limited to 'chromium/components/policy/proto/BUILD.gn')
-rw-r--r-- | chromium/components/policy/proto/BUILD.gn | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/chromium/components/policy/proto/BUILD.gn b/chromium/components/policy/proto/BUILD.gn index 07056950460..ea16d7f65ac 100644 --- a/chromium/components/policy/proto/BUILD.gn +++ b/chromium/components/policy/proto/BUILD.gn @@ -17,14 +17,24 @@ component("proto") { proto_library("policy_record_constants") { visibility = [ "//chrome/browser:browser", - "//chrome/browser:reporting_record_proto", - "//chrome/browser:reporting_record_proto_gen", + ":reporting_record_proto", + ":reporting_record_proto_gen", ] sources = [ "record_constants.proto" ] proto_out_dir = "components/policy/proto" } +# Record definitions for reporting. +proto_library("reporting_record_proto") { + visibility = [ "//chrome/browser:browser" ] + sources = [ "record.proto" ] + + deps = [ ":policy_record_constants" ] + + proto_out_dir = "components/policy/proto" +} + proto_library("policy_common_definitions_compile_proto") { visibility = [ "//components/policy:cloud_policy_proto_generated_compile_proto", |