| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 deps = [ | 39 deps = [ |
| 40 # TODO(tbarzic): Cleanup this list. | 40 # TODO(tbarzic): Cleanup this list. |
| 41 ":attestation_proto", | 41 ":attestation_proto", |
| 42 ":device_policy_proto", | 42 ":device_policy_proto", |
| 43 "//ash", | 43 "//ash", |
| 44 "//ash:ash_with_content", | 44 "//ash:ash_with_content", |
| 45 "//build/linux:fontconfig", | 45 "//build/linux:fontconfig", |
| 46 "//chrome/browser/devtools", | 46 "//chrome/browser/devtools", |
| 47 "//chrome/browser/extensions", | 47 "//chrome/browser/extensions", |
| 48 "//chrome/browser/safe_browsing:chunk_proto", | 48 "//chrome/browser/safe_browsing:chunk_proto", |
| 49 "//chrome/browser/safe_browsing:metadata_proto", |
| 49 "//chrome/common", | 50 "//chrome/common", |
| 50 "//chrome/common/extensions/api", | 51 "//chrome/common/extensions/api", |
| 51 "//chrome/common/extensions/api:api_registration", | 52 "//chrome/common/extensions/api:api_registration", |
| 52 "//chrome/common/net", | 53 "//chrome/common/net", |
| 53 "//chrome/common/safe_browsing:proto", | 54 "//chrome/common/safe_browsing:proto", |
| 54 "//chrome/installer/util:with_no_strings", | 55 "//chrome/installer/util:with_no_strings", |
| 55 "//chromeos", | 56 "//chromeos", |
| 56 "//chromeos:cryptohome_proto", | 57 "//chromeos:cryptohome_proto", |
| 57 "//chromeos:cryptohome_signkey_proto", | 58 "//chromeos:cryptohome_signkey_proto", |
| 58 "//chromeos:power_manager_proto", | 59 "//chromeos:power_manager_proto", |
| 59 "//chromeos/ime:gencode", | 60 "//chromeos/ime:gencode", |
| 60 "//components/arc", | 61 "//components/arc", |
| 61 "//components/certificate_reporting:cert_logger_proto", | 62 "//components/certificate_reporting:cert_logger_proto", |
| 62 "//components/certificate_reporting:encrypted_cert_logger_proto", | 63 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 63 "//components/drive", | 64 "//components/drive", |
| 64 "//components/flags_ui", | 65 "//components/flags_ui", |
| 65 "//components/login", | 66 "//components/login", |
| 66 "//components/onc", | 67 "//components/onc", |
| 67 "//components/ownership", | 68 "//components/ownership", |
| 68 "//components/pairing", | 69 "//components/pairing", |
| 69 "//components/policy", | 70 "//components/policy", |
| 70 "//components/proxy_config", | 71 "//components/proxy_config", |
| 71 "//components/safe_browsing_db:metadata_proto", | |
| 72 "//components/session_manager/core", | 72 "//components/session_manager/core", |
| 73 "//components/user_manager", | 73 "//components/user_manager", |
| 74 "//components/wifi_sync", | 74 "//components/wifi_sync", |
| 75 | 75 |
| 76 # This depends directly on the variations target, rather than just | 76 # This depends directly on the variations target, rather than just |
| 77 # transitively via the common target because the proto sources need to | 77 # transitively via the common target because the proto sources need to |
| 78 # be generated before code in this target can start building. | 78 # be generated before code in this target can start building. |
| 79 "//components/strings", | 79 "//components/strings", |
| 80 "//components/variations", | 80 "//components/variations", |
| 81 "//content/public/browser", | 81 "//content/public/browser", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "policy/proto/install_attributes.proto", | 198 "policy/proto/install_attributes.proto", |
| 199 ] | 199 ] |
| 200 } | 200 } |
| 201 | 201 |
| 202 proto_library("attestation_proto") { | 202 proto_library("attestation_proto") { |
| 203 sources = [ | 203 sources = [ |
| 204 "attestation/attestation_key_payload.proto", | 204 "attestation/attestation_key_payload.proto", |
| 205 "attestation/attestation_signed_data.proto", | 205 "attestation/attestation_signed_data.proto", |
| 206 ] | 206 ] |
| 207 } | 207 } |
| OLD | NEW |