| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "arc/arc_process_service.cc", | 217 "arc/arc_process_service.cc", |
| 218 "arc/arc_process_service.h", | 218 "arc/arc_process_service.h", |
| 219 "arc/arc_service_launcher.cc", | 219 "arc/arc_service_launcher.cc", |
| 220 "arc/arc_service_launcher.h", | 220 "arc/arc_service_launcher.h", |
| 221 "arc/arc_settings_service.cc", | 221 "arc/arc_settings_service.cc", |
| 222 "arc/arc_settings_service.h", | 222 "arc/arc_settings_service.h", |
| 223 "arc/arc_support_host.cc", | 223 "arc/arc_support_host.cc", |
| 224 "arc/arc_support_host.h", | 224 "arc/arc_support_host.h", |
| 225 "arc/arc_tts_service.cc", | 225 "arc/arc_tts_service.cc", |
| 226 "arc/arc_tts_service.h", | 226 "arc/arc_tts_service.h", |
| 227 "arc/arc_wallpaper_handler.cc", | 227 "arc/arc_wallpaper_service.cc", |
| 228 "arc/arc_wallpaper_handler.h", | 228 "arc/arc_wallpaper_service.h", |
| 229 "arc/gpu_arc_video_service_host.cc", | 229 "arc/gpu_arc_video_service_host.cc", |
| 230 "arc/gpu_arc_video_service_host.h", | 230 "arc/gpu_arc_video_service_host.h", |
| 231 "attestation/attestation_ca_client.cc", | 231 "attestation/attestation_ca_client.cc", |
| 232 "attestation/attestation_ca_client.h", | 232 "attestation/attestation_ca_client.h", |
| 233 "attestation/attestation_policy_observer.cc", | 233 "attestation/attestation_policy_observer.cc", |
| 234 "attestation/attestation_policy_observer.h", | 234 "attestation/attestation_policy_observer.h", |
| 235 "attestation/platform_verification_dialog.cc", | 235 "attestation/platform_verification_dialog.cc", |
| 236 "attestation/platform_verification_dialog.h", | 236 "attestation/platform_verification_dialog.h", |
| 237 "attestation/platform_verification_flow.cc", | 237 "attestation/platform_verification_flow.cc", |
| 238 "attestation/platform_verification_flow.h", | 238 "attestation/platform_verification_flow.h", |
| (...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1592 "policy/proto/install_attributes.proto", | 1592 "policy/proto/install_attributes.proto", |
| 1593 ] | 1593 ] |
| 1594 } | 1594 } |
| 1595 | 1595 |
| 1596 proto_library("attestation_proto") { | 1596 proto_library("attestation_proto") { |
| 1597 sources = [ | 1597 sources = [ |
| 1598 "attestation/attestation_key_payload.proto", | 1598 "attestation/attestation_key_payload.proto", |
| 1599 "attestation/attestation_signed_data.proto", | 1599 "attestation/attestation_signed_data.proto", |
| 1600 ] | 1600 ] |
| 1601 } | 1601 } |
| OLD | NEW |