| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "//chrome/browser/devtools", | 43 "//chrome/browser/devtools", |
| 44 "//chrome/browser/extensions", | 44 "//chrome/browser/extensions", |
| 45 "//chrome/browser/safe_browsing:chunk_proto", | 45 "//chrome/browser/safe_browsing:chunk_proto", |
| 46 "//chrome/common", | 46 "//chrome/common", |
| 47 "//chrome/common/extensions/api", | 47 "//chrome/common/extensions/api", |
| 48 "//chrome/common/extensions/api:api_registration", | 48 "//chrome/common/extensions/api:api_registration", |
| 49 "//chrome/common/net", | 49 "//chrome/common/net", |
| 50 "//chrome/common/safe_browsing:proto", | 50 "//chrome/common/safe_browsing:proto", |
| 51 "//chrome/installer/util:with_no_strings", | 51 "//chrome/installer/util:with_no_strings", |
| 52 "//chromeos", | 52 "//chromeos", |
| 53 "//chromeos:attestation_proto", | |
| 54 "//chromeos:cryptohome_proto", | 53 "//chromeos:cryptohome_proto", |
| 55 "//chromeos:cryptohome_signkey_proto", | 54 "//chromeos:cryptohome_signkey_proto", |
| 56 "//chromeos:power_manager_proto", | 55 "//chromeos:power_manager_proto", |
| 57 "//components/arc", | 56 "//components/arc", |
| 58 "//components/certificate_reporting:cert_logger_proto", | 57 "//components/certificate_reporting:cert_logger_proto", |
| 59 "//components/certificate_reporting:encrypted_cert_logger_proto", | 58 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 60 "//components/drive", | 59 "//components/drive", |
| 61 "//components/drive:drive_chromeos", | 60 "//components/drive:drive_chromeos", |
| 62 "//components/feedback", | 61 "//components/feedback", |
| 63 "//components/flags_ui", | 62 "//components/flags_ui", |
| (...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 proto_library("device_policy_proto") { | 1357 proto_library("device_policy_proto") { |
| 1359 sources = [ | 1358 sources = [ |
| 1360 "policy/proto/chrome_device_policy.proto", | 1359 "policy/proto/chrome_device_policy.proto", |
| 1361 "policy/proto/install_attributes.proto", | 1360 "policy/proto/install_attributes.proto", |
| 1362 ] | 1361 ] |
| 1363 } | 1362 } |
| 1364 | 1363 |
| 1365 proto_library("attestation_proto") { | 1364 proto_library("attestation_proto") { |
| 1366 sources = [ | 1365 sources = [ |
| 1367 "attestation/attestation_key_payload.proto", | 1366 "attestation/attestation_key_payload.proto", |
| 1367 "attestation/attestation_signed_data.proto", |
| 1368 ] | 1368 ] |
| 1369 } | 1369 } |
| OLD | NEW |