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

Side by Side Diff: chromeos/BUILD.gn

Issue 2558543003: Fix handling of device cloud signing policy key rotation (Closed)
Patch Set: Fire OwnerKeySet from FakeSessionManagerClient Created 4 years 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/protobuf/proto_library.gni") 7 import("//third_party/protobuf/proto_library.gni")
8 8
9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos")
10 10
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 } 126 }
127 127
128 static_library("test_support_without_gmock") { 128 static_library("test_support_without_gmock") {
129 testonly = true 129 testonly = true
130 configs += [ "//build/config/linux/dbus" ] 130 configs += [ "//build/config/linux/dbus" ]
131 deps = [ 131 deps = [
132 ":attestation_proto", 132 ":attestation_proto",
133 ":chromeos", 133 ":chromeos",
134 ":cryptohome_proto", 134 ":cryptohome_proto",
135 ":power_manager_proto", 135 ":power_manager_proto",
136 "//components/policy/proto",
136 "//crypto", 137 "//crypto",
137 ] 138 ]
138 sources = [ 139 sources = [
139 "dbus/fake_cros_disks_client.cc", 140 "dbus/fake_cros_disks_client.cc",
140 "dbus/fake_cros_disks_client.h", 141 "dbus/fake_cros_disks_client.h",
141 "dbus/fake_session_manager_client.cc", 142 "dbus/fake_session_manager_client.cc",
142 "dbus/fake_session_manager_client.h", 143 "dbus/fake_session_manager_client.h",
143 "dbus/fake_shill_manager_client.cc", 144 "dbus/fake_shill_manager_client.cc",
144 "dbus/fake_shill_manager_client.h", 145 "dbus/fake_shill_manager_client.h",
145 "dbus/fake_update_engine_client.cc", 146 "dbus/fake_update_engine_client.cc",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 proto_out_dir = "chromeos/attestation" 217 proto_out_dir = "chromeos/attestation"
217 } 218 }
218 219
219 proto_library("cryptohome_signkey_proto") { 220 proto_library("cryptohome_signkey_proto") {
220 sources = [ 221 sources = [
221 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 222 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
222 ] 223 ]
223 224
224 proto_out_dir = "chromeos/cryptohome" 225 proto_out_dir = "chromeos/cryptohome"
225 } 226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698