| 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", | |
| 50 "//chrome/common", | 49 "//chrome/common", |
| 51 "//chrome/common/extensions/api", | 50 "//chrome/common/extensions/api", |
| 52 "//chrome/common/extensions/api:api_registration", | 51 "//chrome/common/extensions/api:api_registration", |
| 53 "//chrome/common/net", | 52 "//chrome/common/net", |
| 54 "//chrome/common/safe_browsing:proto", | 53 "//chrome/common/safe_browsing:proto", |
| 55 "//chrome/installer/util:with_no_strings", | 54 "//chrome/installer/util:with_no_strings", |
| 56 "//chromeos", | 55 "//chromeos", |
| 57 "//chromeos:cryptohome_proto", | 56 "//chromeos:cryptohome_proto", |
| 58 "//chromeos:cryptohome_signkey_proto", | 57 "//chromeos:cryptohome_signkey_proto", |
| 59 "//chromeos:power_manager_proto", | 58 "//chromeos:power_manager_proto", |
| 60 "//components/arc", | 59 "//components/arc", |
| 61 "//components/certificate_reporting:cert_logger_proto", | 60 "//components/certificate_reporting:cert_logger_proto", |
| 62 "//components/certificate_reporting:encrypted_cert_logger_proto", | 61 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 63 "//components/drive", | 62 "//components/drive", |
| 64 "//components/drive:drive_chromeos", | 63 "//components/drive:drive_chromeos", |
| 65 "//components/feedback", | 64 "//components/feedback", |
| 66 "//components/flags_ui", | 65 "//components/flags_ui", |
| 67 "//components/login", | 66 "//components/login", |
| 68 "//components/onc", | 67 "//components/onc", |
| 69 "//components/ownership", | 68 "//components/ownership", |
| 70 "//components/pairing", | 69 "//components/pairing", |
| 71 "//components/policy", | 70 "//components/policy", |
| 72 "//components/proxy_config", | 71 "//components/proxy_config", |
| 72 "//components/safe_browsing_db:metadata_proto", |
| 73 "//components/session_manager/core", | 73 "//components/session_manager/core", |
| 74 "//components/user_manager", | 74 "//components/user_manager", |
| 75 "//components/wifi_sync", | 75 "//components/wifi_sync", |
| 76 | 76 |
| 77 # This depends directly on the variations target, rather than just | 77 # This depends directly on the variations target, rather than just |
| 78 # transitively via the common target because the proto sources need to | 78 # transitively via the common target because the proto sources need to |
| 79 # be generated before code in this target can start building. | 79 # be generated before code in this target can start building. |
| 80 "//components/strings", | 80 "//components/strings", |
| 81 "//components/variations", | 81 "//components/variations", |
| 82 "//content/public/browser", | 82 "//content/public/browser", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "policy/proto/install_attributes.proto", | 200 "policy/proto/install_attributes.proto", |
| 201 ] | 201 ] |
| 202 } | 202 } |
| 203 | 203 |
| 204 proto_library("attestation_proto") { | 204 proto_library("attestation_proto") { |
| 205 sources = [ | 205 sources = [ |
| 206 "attestation/attestation_key_payload.proto", | 206 "attestation/attestation_key_payload.proto", |
| 207 "attestation/attestation_signed_data.proto", | 207 "attestation/attestation_signed_data.proto", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| OLD | NEW |