| Index: chromeos/BUILD.gn
|
| diff --git a/chromeos/BUILD.gn b/chromeos/BUILD.gn
|
| index ea30be5b8671b48bb860fe650a9465a621671091..16120488b25903fde537b74257645d0354a7c98c 100644
|
| --- a/chromeos/BUILD.gn
|
| +++ b/chromeos/BUILD.gn
|
| @@ -21,6 +21,7 @@ component("chromeos") {
|
| deps = [
|
| ":attestation_proto",
|
| ":authpolicy_proto",
|
| + ":biod_proto",
|
| ":cryptohome_proto",
|
| ":power_manager_proto",
|
| "//base",
|
| @@ -496,6 +497,7 @@ static_library("test_support") {
|
| configs += [ "//build/config/linux/dbus" ]
|
| public_deps = [
|
| ":attestation_proto",
|
| + ":biod_proto",
|
| ":chromeos",
|
| ":cryptohome_proto",
|
| ":power_manager_proto",
|
| @@ -564,6 +566,7 @@ static_library("test_support_without_gmock") {
|
| configs += [ "//build/config/linux/dbus" ]
|
| deps = [
|
| ":attestation_proto",
|
| + ":biod_proto",
|
| ":chromeos",
|
| ":cryptohome_proto",
|
| ":power_manager_proto",
|
| @@ -589,6 +592,7 @@ test("chromeos_unittests") {
|
| ]
|
| deps = [
|
| ":attestation_proto",
|
| + ":biod_proto",
|
| ":cryptohome_proto",
|
| ":power_manager_proto",
|
| ":test_support",
|
| @@ -752,3 +756,12 @@ proto_library("authpolicy_proto") {
|
|
|
| proto_out_dir = "chromeos/dbus/authpolicy"
|
| }
|
| +
|
| +proto_library("biod_proto") {
|
| + sources = [
|
| + "//third_party/cros_system_api/dbus/biod/constants.proto",
|
| + "//third_party/cros_system_api/dbus/biod/messages.proto",
|
| + ]
|
| +
|
| + proto_out_dir = "chromeos/dbus/biod"
|
| +}
|
|
|