| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
| 9 | 9 |
| 10 assert(is_chromeos) | 10 assert(is_chromeos) |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "//chrome/browser/devtools", | 42 "//chrome/browser/devtools", |
| 43 "//chrome/browser/extensions", | 43 "//chrome/browser/extensions", |
| 44 "//chrome/browser/safe_browsing:chunk_proto", | 44 "//chrome/browser/safe_browsing:chunk_proto", |
| 45 "//chrome/common", | 45 "//chrome/common", |
| 46 "//chrome/common/extensions/api", | 46 "//chrome/common/extensions/api", |
| 47 "//chrome/common/extensions/api:api_registration", | 47 "//chrome/common/extensions/api:api_registration", |
| 48 "//chrome/common/net", | 48 "//chrome/common/net", |
| 49 "//chrome/common/safe_browsing:proto", | 49 "//chrome/common/safe_browsing:proto", |
| 50 "//chrome/installer/util:with_no_strings", | 50 "//chrome/installer/util:with_no_strings", |
| 51 "//chromeos", | 51 "//chromeos", |
| 52 "//chromeos:attestation_proto", |
| 52 "//chromeos:cryptohome_proto", | 53 "//chromeos:cryptohome_proto", |
| 53 "//chromeos:cryptohome_signkey_proto", | 54 "//chromeos:cryptohome_signkey_proto", |
| 54 "//chromeos:power_manager_proto", | 55 "//chromeos:power_manager_proto", |
| 55 "//components/arc", | 56 "//components/arc", |
| 56 "//components/certificate_reporting:cert_logger_proto", | 57 "//components/certificate_reporting:cert_logger_proto", |
| 57 "//components/certificate_reporting:encrypted_cert_logger_proto", | 58 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 58 "//components/drive", | 59 "//components/drive", |
| 59 "//components/drive:drive_chromeos", | 60 "//components/drive:drive_chromeos", |
| 60 "//components/feedback", | 61 "//components/feedback", |
| 61 "//components/flags_ui", | 62 "//components/flags_ui", |
| (...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 proto_library("device_policy_proto") { | 1590 proto_library("device_policy_proto") { |
| 1590 sources = [ | 1591 sources = [ |
| 1591 "policy/proto/chrome_device_policy.proto", | 1592 "policy/proto/chrome_device_policy.proto", |
| 1592 "policy/proto/install_attributes.proto", | 1593 "policy/proto/install_attributes.proto", |
| 1593 ] | 1594 ] |
| 1594 } | 1595 } |
| 1595 | 1596 |
| 1596 proto_library("attestation_proto") { | 1597 proto_library("attestation_proto") { |
| 1597 sources = [ | 1598 sources = [ |
| 1598 "attestation/attestation_key_payload.proto", | 1599 "attestation/attestation_key_payload.proto", |
| 1599 "attestation/attestation_signed_data.proto", | |
| 1600 ] | 1600 ] |
| 1601 } | 1601 } |
| OLD | NEW |