| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/protobuf/proto_library.gni") | 7 import("//third_party/protobuf/proto_library.gni") |
| 8 | 8 |
| 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") | 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") |
| 10 | 10 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "dbus/dbus_thread_manager.cc", | 154 "dbus/dbus_thread_manager.cc", |
| 155 "dbus/dbus_thread_manager.h", | 155 "dbus/dbus_thread_manager.h", |
| 156 "dbus/debug_daemon_client.cc", | 156 "dbus/debug_daemon_client.cc", |
| 157 "dbus/debug_daemon_client.h", | 157 "dbus/debug_daemon_client.h", |
| 158 "dbus/easy_unlock_client.cc", | 158 "dbus/easy_unlock_client.cc", |
| 159 "dbus/easy_unlock_client.h", | 159 "dbus/easy_unlock_client.h", |
| 160 "dbus/fake_arc_obb_mounter_client.cc", | 160 "dbus/fake_arc_obb_mounter_client.cc", |
| 161 "dbus/fake_arc_obb_mounter_client.h", | 161 "dbus/fake_arc_obb_mounter_client.h", |
| 162 "dbus/fake_auth_policy_client.cc", | 162 "dbus/fake_auth_policy_client.cc", |
| 163 "dbus/fake_auth_policy_client.h", | 163 "dbus/fake_auth_policy_client.h", |
| 164 "dbus/fake_biod_auth_session_client.cc", |
| 165 "dbus/fake_biod_auth_session_client.h", |
| 166 "dbus/fake_biod_biometrics_manager_client.cc", |
| 167 "dbus/fake_biod_biometrics_manager_client.h", |
| 168 "dbus/fake_biod_enroll_session_client.cc", |
| 169 "dbus/fake_biod_enroll_session_client.h", |
| 170 "dbus/fake_biod_record_client.cc", |
| 171 "dbus/fake_biod_record_client.h", |
| 164 "dbus/fake_cras_audio_client.cc", | 172 "dbus/fake_cras_audio_client.cc", |
| 165 "dbus/fake_cras_audio_client.h", | 173 "dbus/fake_cras_audio_client.h", |
| 166 "dbus/fake_cros_disks_client.cc", | 174 "dbus/fake_cros_disks_client.cc", |
| 167 "dbus/fake_cros_disks_client.h", | 175 "dbus/fake_cros_disks_client.h", |
| 168 "dbus/fake_cryptohome_client.cc", | 176 "dbus/fake_cryptohome_client.cc", |
| 169 "dbus/fake_cryptohome_client.h", | 177 "dbus/fake_cryptohome_client.h", |
| 170 "dbus/fake_debug_daemon_client.cc", | 178 "dbus/fake_debug_daemon_client.cc", |
| 171 "dbus/fake_debug_daemon_client.h", | 179 "dbus/fake_debug_daemon_client.h", |
| 172 "dbus/fake_easy_unlock_client.cc", | 180 "dbus/fake_easy_unlock_client.cc", |
| 173 "dbus/fake_easy_unlock_client.h", | 181 "dbus/fake_easy_unlock_client.h", |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 proto_out_dir = "chromeos/cryptohome" | 729 proto_out_dir = "chromeos/cryptohome" |
| 722 } | 730 } |
| 723 | 731 |
| 724 proto_library("authpolicy_proto") { | 732 proto_library("authpolicy_proto") { |
| 725 sources = [ | 733 sources = [ |
| 726 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 734 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
| 727 ] | 735 ] |
| 728 | 736 |
| 729 proto_out_dir = "chromeos/dbus/authpolicy" | 737 proto_out_dir = "chromeos/dbus/authpolicy" |
| 730 } | 738 } |
| OLD | NEW |