| 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("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "//ash/autoclick/mus/public/interfaces", | 42 "//ash/autoclick/mus/public/interfaces", |
| 43 "//ash/public/cpp:ash_public_cpp", | 43 "//ash/public/cpp:ash_public_cpp", |
| 44 "//build/linux:fontconfig", | 44 "//build/linux:fontconfig", |
| 45 "//chrome/browser/devtools", | 45 "//chrome/browser/devtools", |
| 46 "//chrome/browser/extensions", | 46 "//chrome/browser/extensions", |
| 47 "//chrome/browser/safe_browsing:chunk_proto", | 47 "//chrome/browser/safe_browsing:chunk_proto", |
| 48 "//chrome/common", | 48 "//chrome/common", |
| 49 "//chrome/common/extensions/api", | 49 "//chrome/common/extensions/api", |
| 50 "//chrome/common/extensions/api:api_registration", | 50 "//chrome/common/extensions/api:api_registration", |
| 51 "//chrome/common/net", | 51 "//chrome/common/net", |
| 52 "//chrome/common/safe_browsing:proto", | |
| 53 "//chromeos", | 52 "//chromeos", |
| 54 "//chromeos:attestation_proto", | 53 "//chromeos:attestation_proto", |
| 55 "//chromeos:cryptohome_proto", | 54 "//chromeos:cryptohome_proto", |
| 56 "//chromeos:cryptohome_signkey_proto", | 55 "//chromeos:cryptohome_signkey_proto", |
| 57 "//chromeos/components/tether", | 56 "//chromeos/components/tether", |
| 58 "//components/arc", | 57 "//components/arc", |
| 59 "//components/certificate_reporting:cert_logger_proto", | 58 "//components/certificate_reporting:cert_logger_proto", |
| 60 "//components/certificate_reporting:encrypted_cert_logger_proto", | 59 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 61 "//components/drive", | 60 "//components/drive", |
| 62 "//components/drive:drive_chromeos", | 61 "//components/drive:drive_chromeos", |
| 63 "//components/feedback", | 62 "//components/feedback", |
| 64 "//components/flags_ui", | 63 "//components/flags_ui", |
| 65 "//components/login", | 64 "//components/login", |
| 66 "//components/metrics/leak_detector", | 65 "//components/metrics/leak_detector", |
| 67 "//components/onc", | 66 "//components/onc", |
| 68 "//components/ownership", | 67 "//components/ownership", |
| 69 "//components/pairing", | 68 "//components/pairing", |
| 70 "//components/policy:generated", | 69 "//components/policy:generated", |
| 71 "//components/proxy_config", | 70 "//components/proxy_config", |
| 72 "//components/safe_browsing:csd_proto", | 71 "//components/safe_browsing/common:proto", |
| 73 "//components/safe_browsing_db:metadata_proto", | 72 "//components/safe_browsing_db:metadata_proto", |
| 74 "//components/session_manager/core", | 73 "//components/session_manager/core", |
| 75 "//components/sync_wifi", | 74 "//components/sync_wifi", |
| 76 "//components/user_manager", | 75 "//components/user_manager", |
| 77 | 76 |
| 78 # This depends directly on the variations target, rather than just | 77 # This depends directly on the variations target, rather than just |
| 79 # transitively via the common target because the proto sources need to | 78 # transitively via the common target because the proto sources need to |
| 80 # be generated before code in this target can start building. | 79 # be generated before code in this target can start building. |
| 81 "//components/resources", | 80 "//components/resources", |
| 82 "//components/strings", | 81 "//components/strings", |
| (...skipping 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1794 "policy/proto/chrome_device_policy.proto", | 1793 "policy/proto/chrome_device_policy.proto", |
| 1795 "policy/proto/install_attributes.proto", | 1794 "policy/proto/install_attributes.proto", |
| 1796 ] | 1795 ] |
| 1797 } | 1796 } |
| 1798 | 1797 |
| 1799 proto_library("attestation_proto") { | 1798 proto_library("attestation_proto") { |
| 1800 sources = [ | 1799 sources = [ |
| 1801 "attestation/attestation_key_payload.proto", | 1800 "attestation/attestation_key_payload.proto", |
| 1802 ] | 1801 ] |
| 1803 } | 1802 } |
| OLD | NEW |