| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 52 "//chrome/common/safe_browsing:proto", |
| 53 "//chromeos", | 53 "//chromeos", |
| 54 "//chromeos:attestation_proto", | 54 "//chromeos:attestation_proto", |
| 55 "//chromeos:authpolicy_proto", |
| 55 "//chromeos:cryptohome_proto", | 56 "//chromeos:cryptohome_proto", |
| 56 "//chromeos:cryptohome_signkey_proto", | 57 "//chromeos:cryptohome_signkey_proto", |
| 57 "//chromeos/components/tether", | 58 "//chromeos/components/tether", |
| 58 "//components/arc", | 59 "//components/arc", |
| 59 "//components/certificate_reporting:cert_logger_proto", | 60 "//components/certificate_reporting:cert_logger_proto", |
| 60 "//components/certificate_reporting:encrypted_cert_logger_proto", | 61 "//components/certificate_reporting:encrypted_cert_logger_proto", |
| 61 "//components/drive", | 62 "//components/drive", |
| 62 "//components/drive:drive_chromeos", | 63 "//components/drive:drive_chromeos", |
| 63 "//components/feedback", | 64 "//components/feedback", |
| 64 "//components/flags_ui", | 65 "//components/flags_ui", |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 "attestation/attestation_ca_client.cc", | 344 "attestation/attestation_ca_client.cc", |
| 344 "attestation/attestation_ca_client.h", | 345 "attestation/attestation_ca_client.h", |
| 345 "attestation/attestation_policy_observer.cc", | 346 "attestation/attestation_policy_observer.cc", |
| 346 "attestation/attestation_policy_observer.h", | 347 "attestation/attestation_policy_observer.h", |
| 347 "attestation/platform_verification_dialog.cc", | 348 "attestation/platform_verification_dialog.cc", |
| 348 "attestation/platform_verification_dialog.h", | 349 "attestation/platform_verification_dialog.h", |
| 349 "attestation/platform_verification_flow.cc", | 350 "attestation/platform_verification_flow.cc", |
| 350 "attestation/platform_verification_flow.h", | 351 "attestation/platform_verification_flow.h", |
| 351 "attestation/platform_verification_impl.cc", | 352 "attestation/platform_verification_impl.cc", |
| 352 "attestation/platform_verification_impl.h", | 353 "attestation/platform_verification_impl.h", |
| 354 "authpolicy/auth_policy_credentials_manager.cc", |
| 355 "authpolicy/auth_policy_credentials_manager.h", |
| 353 "background/ash_wallpaper_delegate.cc", | 356 "background/ash_wallpaper_delegate.cc", |
| 354 "background/ash_wallpaper_delegate.h", | 357 "background/ash_wallpaper_delegate.h", |
| 355 "base/file_flusher.cc", | 358 "base/file_flusher.cc", |
| 356 "base/file_flusher.h", | 359 "base/file_flusher.h", |
| 357 "base/locale_util.cc", | 360 "base/locale_util.cc", |
| 358 "base/locale_util.h", | 361 "base/locale_util.h", |
| 359 "bluetooth/bluetooth_pairing_dialog.cc", | 362 "bluetooth/bluetooth_pairing_dialog.cc", |
| 360 "bluetooth/bluetooth_pairing_dialog.h", | 363 "bluetooth/bluetooth_pairing_dialog.h", |
| 361 "boot_times_recorder.cc", | 364 "boot_times_recorder.cc", |
| 362 "boot_times_recorder.h", | 365 "boot_times_recorder.h", |
| (...skipping 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1846 "policy/proto/chrome_device_policy.proto", | 1849 "policy/proto/chrome_device_policy.proto", |
| 1847 "policy/proto/install_attributes.proto", | 1850 "policy/proto/install_attributes.proto", |
| 1848 ] | 1851 ] |
| 1849 } | 1852 } |
| 1850 | 1853 |
| 1851 proto_library("attestation_proto") { | 1854 proto_library("attestation_proto") { |
| 1852 sources = [ | 1855 sources = [ |
| 1853 "attestation/attestation_key_payload.proto", | 1856 "attestation/attestation_key_payload.proto", |
| 1854 ] | 1857 ] |
| 1855 } | 1858 } |
| OLD | NEW |