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

Side by Side Diff: chromeos/BUILD.gn

Issue 2531063002: Implement FakeAuthPolicyClient::RefreshDevicePolicy() (Closed)
Patch Set: More simplifications following Achuith's comments 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
« no previous file with comments | « no previous file | chromeos/DEPS » ('j') | chromeos/dbus/fake_auth_policy_client.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 12 matching lines...) Expand all
23 public_deps = [ 23 public_deps = [
24 "//dbus", 24 "//dbus",
25 ] 25 ]
26 deps = [ 26 deps = [
27 ":attestation_proto", 27 ":attestation_proto",
28 ":cryptohome_proto", 28 ":cryptohome_proto",
29 ":power_manager_proto", 29 ":power_manager_proto",
30 "//base", 30 "//base",
31 "//base:i18n", 31 "//base:i18n",
32 "//base/third_party/dynamic_annotations", 32 "//base/third_party/dynamic_annotations",
33 "//chrome/browser/chromeos:device_policy_proto",
brettw 2017/08/24 23:54:46 Hi, this is a layering violation as //chromeos is
33 "//components/device_event_log", 34 "//components/device_event_log",
34 "//components/onc", 35 "//components/onc",
35 "//components/policy/proto", 36 "//components/policy/proto",
36 "//components/pref_registry", 37 "//components/pref_registry",
37 "//components/prefs", 38 "//components/prefs",
38 "//components/proxy_config", 39 "//components/proxy_config",
39 "//components/signin/core/account_id", 40 "//components/signin/core/account_id",
40 "//components/user_manager", 41 "//components/user_manager",
41 "//crypto", 42 "//crypto",
42 "//crypto:platform", 43 "//crypto:platform",
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 proto_out_dir = "chromeos/attestation" 216 proto_out_dir = "chromeos/attestation"
216 } 217 }
217 218
218 proto_library("cryptohome_signkey_proto") { 219 proto_library("cryptohome_signkey_proto") {
219 sources = [ 220 sources = [
220 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 221 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
221 ] 222 ]
222 223
223 proto_out_dir = "chromeos/cryptohome" 224 proto_out_dir = "chromeos/cryptohome"
224 } 225 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/DEPS » ('j') | chromeos/dbus/fake_auth_policy_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698