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

Side by Side Diff: chromeos/BUILD.gn

Issue 2558543003: Fix handling of device cloud signing policy key rotation (Closed)
Patch Set: Rebased Created 3 years, 10 months 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 130
131 static_library("test_support_without_gmock") { 131 static_library("test_support_without_gmock") {
132 testonly = true 132 testonly = true
133 configs += [ "//build/config/linux/dbus" ] 133 configs += [ "//build/config/linux/dbus" ]
134 deps = [ 134 deps = [
135 ":attestation_proto", 135 ":attestation_proto",
136 ":chromeos", 136 ":chromeos",
137 ":cryptohome_proto", 137 ":cryptohome_proto",
138 ":power_manager_proto", 138 ":power_manager_proto",
139 "//components/policy/proto",
139 "//crypto", 140 "//crypto",
140 ] 141 ]
141 sources = [ 142 sources = [
142 "dbus/fake_cros_disks_client.cc", 143 "dbus/fake_cros_disks_client.cc",
143 "dbus/fake_cros_disks_client.h", 144 "dbus/fake_cros_disks_client.h",
144 "dbus/fake_session_manager_client.cc", 145 "dbus/fake_session_manager_client.cc",
145 "dbus/fake_session_manager_client.h", 146 "dbus/fake_session_manager_client.h",
146 "dbus/fake_shill_manager_client.cc", 147 "dbus/fake_shill_manager_client.cc",
147 "dbus/fake_shill_manager_client.h", 148 "dbus/fake_shill_manager_client.h",
148 "dbus/fake_update_engine_client.cc", 149 "dbus/fake_update_engine_client.cc",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 proto_out_dir = "chromeos/cryptohome" 228 proto_out_dir = "chromeos/cryptohome"
228 } 229 }
229 230
230 proto_library("authpolicy_proto") { 231 proto_library("authpolicy_proto") {
231 sources = [ 232 sources = [
232 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data .proto", 233 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data .proto",
233 ] 234 ]
234 235
235 proto_out_dir = "chromeos/dbus/authpolicy" 236 proto_out_dir = "chromeos/dbus/authpolicy"
236 } 237 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698