| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/common", | 49 "//chrome/common", |
| 50 "//chrome/common/extensions/api", | 50 "//chrome/common/extensions/api", |
| 51 "//chrome/common/extensions/api:api_registration", | 51 "//chrome/common/extensions/api:api_registration", |
| 52 "//chrome/common/net", | 52 "//chrome/common/net", |
| 53 "//chrome/common/safe_browsing:proto", | 53 "//chrome/common/safe_browsing:proto", |
| 54 "//chromeos", | 54 "//chromeos", |
| 55 "//chromeos:attestation_proto", | 55 "//chromeos:attestation_proto", |
| 56 "//chromeos:authpolicy_proto", |
| 56 "//chromeos:cryptohome_proto", | 57 "//chromeos:cryptohome_proto", |
| 57 "//chromeos:cryptohome_signkey_proto", | 58 "//chromeos:cryptohome_signkey_proto", |
| 58 "//chromeos/components/tether", | 59 "//chromeos/components/tether", |
| 59 "//components/arc", | 60 "//components/arc", |
| 60 "//components/certificate_reporting:cert_logger_proto", | 61 "//components/certificate_reporting:cert_logger_proto", |
| 61 "//components/certificate_reporting:encrypted_cert_logger_proto", | 62 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 62 "//components/drive", | 63 "//components/drive", |
| 63 "//components/drive:drive_chromeos", | 64 "//components/drive:drive_chromeos", |
| 64 "//components/feedback", | 65 "//components/feedback", |
| 65 "//components/flags_ui", | 66 "//components/flags_ui", |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 "attestation/attestation_ca_client.cc", | 346 "attestation/attestation_ca_client.cc", |
| 346 "attestation/attestation_ca_client.h", | 347 "attestation/attestation_ca_client.h", |
| 347 "attestation/attestation_policy_observer.cc", | 348 "attestation/attestation_policy_observer.cc", |
| 348 "attestation/attestation_policy_observer.h", | 349 "attestation/attestation_policy_observer.h", |
| 349 "attestation/platform_verification_dialog.cc", | 350 "attestation/platform_verification_dialog.cc", |
| 350 "attestation/platform_verification_dialog.h", | 351 "attestation/platform_verification_dialog.h", |
| 351 "attestation/platform_verification_flow.cc", | 352 "attestation/platform_verification_flow.cc", |
| 352 "attestation/platform_verification_flow.h", | 353 "attestation/platform_verification_flow.h", |
| 353 "attestation/platform_verification_impl.cc", | 354 "attestation/platform_verification_impl.cc", |
| 354 "attestation/platform_verification_impl.h", | 355 "attestation/platform_verification_impl.h", |
| 356 "authpolicy/auth_policy_credentials_manager.cc", |
| 357 "authpolicy/auth_policy_credentials_manager.h", |
| 355 "background/ash_wallpaper_delegate.cc", | 358 "background/ash_wallpaper_delegate.cc", |
| 356 "background/ash_wallpaper_delegate.h", | 359 "background/ash_wallpaper_delegate.h", |
| 357 "base/file_flusher.cc", | 360 "base/file_flusher.cc", |
| 358 "base/file_flusher.h", | 361 "base/file_flusher.h", |
| 359 "base/locale_util.cc", | 362 "base/locale_util.cc", |
| 360 "base/locale_util.h", | 363 "base/locale_util.h", |
| 361 "bluetooth/bluetooth_pairing_dialog.cc", | 364 "bluetooth/bluetooth_pairing_dialog.cc", |
| 362 "bluetooth/bluetooth_pairing_dialog.h", | 365 "bluetooth/bluetooth_pairing_dialog.h", |
| 363 "boot_times_recorder.cc", | 366 "boot_times_recorder.cc", |
| 364 "boot_times_recorder.h", | 367 "boot_times_recorder.h", |
| (...skipping 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1858 "policy/proto/chrome_device_policy.proto", | 1861 "policy/proto/chrome_device_policy.proto", |
| 1859 "policy/proto/install_attributes.proto", | 1862 "policy/proto/install_attributes.proto", |
| 1860 ] | 1863 ] |
| 1861 } | 1864 } |
| 1862 | 1865 |
| 1863 proto_library("attestation_proto") { | 1866 proto_library("attestation_proto") { |
| 1864 sources = [ | 1867 sources = [ |
| 1865 "attestation/attestation_key_payload.proto", | 1868 "attestation/attestation_key_payload.proto", |
| 1866 ] | 1869 ] |
| 1867 } | 1870 } |
| OLD | NEW |