| OLD | NEW |
| 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 21 matching lines...) Expand all Loading... |
| 32 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
| 33 "//chrome/browser/chromeos:device_policy_proto", | 33 "//chrome/browser/chromeos:device_policy_proto", |
| 34 "//components/device_event_log", | 34 "//components/device_event_log", |
| 35 "//components/onc", | 35 "//components/onc", |
| 36 "//components/policy:cloud_policy_proto_generated_compile", | 36 "//components/policy:cloud_policy_proto_generated_compile", |
| 37 "//components/policy/proto", | 37 "//components/policy/proto", |
| 38 "//components/pref_registry", | 38 "//components/pref_registry", |
| 39 "//components/prefs", | 39 "//components/prefs", |
| 40 "//components/proxy_config", | 40 "//components/proxy_config", |
| 41 "//components/signin/core/account_id", | 41 "//components/signin/core/account_id", |
| 42 "//components/url_formatter", | |
| 43 "//components/user_manager", | 42 "//components/user_manager", |
| 44 "//crypto", | 43 "//crypto", |
| 45 "//crypto:platform", | 44 "//crypto:platform", |
| 46 "//google_apis", | 45 "//google_apis", |
| 47 "//net", | 46 "//net", |
| 48 "//skia", # For components/user_manager | 47 "//skia", # For components/user_manager |
| 49 "//third_party/icu", | 48 "//third_party/icu", |
| 50 "//third_party/libxml", | 49 "//third_party/libxml", |
| 51 "//third_party/protobuf:protobuf_lite", | 50 "//third_party/protobuf:protobuf_lite", |
| 52 "//url", | 51 "//url", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 proto_out_dir = "chromeos/attestation" | 217 proto_out_dir = "chromeos/attestation" |
| 219 } | 218 } |
| 220 | 219 |
| 221 proto_library("cryptohome_signkey_proto") { | 220 proto_library("cryptohome_signkey_proto") { |
| 222 sources = [ | 221 sources = [ |
| 223 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 222 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 224 ] | 223 ] |
| 225 | 224 |
| 226 proto_out_dir = "chromeos/cryptohome" | 225 proto_out_dir = "chromeos/cryptohome" |
| 227 } | 226 } |
| OLD | NEW |