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

Side by Side Diff: chromeos/BUILD.gn

Issue 1693383003: ChromeOS cryptohome should be able to use gaia id as user identifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing files. Created 4 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 17 matching lines...) Expand all
28 ":power_manager_proto", 28 ":power_manager_proto",
29 "//base", 29 "//base",
30 "//base:i18n", 30 "//base:i18n",
31 "//base/third_party/dynamic_annotations", 31 "//base/third_party/dynamic_annotations",
32 "//components/device_event_log", 32 "//components/device_event_log",
33 "//components/onc", 33 "//components/onc",
34 "//components/policy/proto", 34 "//components/policy/proto",
35 "//components/prefs", 35 "//components/prefs",
36 "//components/proxy_config", 36 "//components/proxy_config",
37 "//components/signin/core/account_id", 37 "//components/signin/core/account_id",
38 "//components/user_manager",
38 "//crypto", 39 "//crypto",
39 "//crypto:platform", 40 "//crypto:platform",
40 "//google_apis", 41 "//google_apis",
41 "//third_party/icu", 42 "//third_party/icu",
42 "//third_party/libxml", 43 "//third_party/libxml",
43 "//third_party/protobuf:protobuf_lite", 44 "//third_party/protobuf:protobuf_lite",
44 "//url", 45 "//url",
45 ] 46 ]
46 sources = gypi_values.chromeos_sources 47 sources = gypi_values.chromeos_sources
47 defines = [ "CHROMEOS_IMPLEMENTATION" ] 48 defines = [ "CHROMEOS_IMPLEMENTATION" ]
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 proto_out_dir = "chromeos/dbus/cryptohome" 191 proto_out_dir = "chromeos/dbus/cryptohome"
191 } 192 }
192 193
193 proto_library("cryptohome_signkey_proto") { 194 proto_library("cryptohome_signkey_proto") {
194 sources = [ 195 sources = [
195 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 196 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
196 ] 197 ]
197 198
198 proto_out_dir = "chromeos/cryptohome" 199 proto_out_dir = "chromeos/cryptohome"
199 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698