| 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 ] | 604 ] |
| 605 sources = [ | 605 sources = [ |
| 606 "app_mode/kiosk_oem_manifest_parser_unittest.cc", | 606 "app_mode/kiosk_oem_manifest_parser_unittest.cc", |
| 607 "attestation/attestation_flow_unittest.cc", | 607 "attestation/attestation_flow_unittest.cc", |
| 608 "audio/audio_devices_pref_handler_impl_unittest.cc", | 608 "audio/audio_devices_pref_handler_impl_unittest.cc", |
| 609 "audio/cras_audio_handler_unittest.cc", | 609 "audio/cras_audio_handler_unittest.cc", |
| 610 "cert_loader_unittest.cc", | 610 "cert_loader_unittest.cc", |
| 611 "cryptohome/homedir_methods_unittest.cc", | 611 "cryptohome/homedir_methods_unittest.cc", |
| 612 "cryptohome/system_salt_getter_unittest.cc", | 612 "cryptohome/system_salt_getter_unittest.cc", |
| 613 "dbus/biod/biod_client_unittest.cc", | 613 "dbus/biod/biod_client_unittest.cc", |
| 614 "dbus/biod/fake_biod_client_unittest.cc", |
| 614 "dbus/blocking_method_caller_unittest.cc", | 615 "dbus/blocking_method_caller_unittest.cc", |
| 615 "dbus/cras_audio_client_unittest.cc", | 616 "dbus/cras_audio_client_unittest.cc", |
| 616 "dbus/cros_disks_client_unittest.cc", | 617 "dbus/cros_disks_client_unittest.cc", |
| 617 "dbus/dbus_thread_manager_unittest.cc", | 618 "dbus/dbus_thread_manager_unittest.cc", |
| 618 "dbus/fake_auth_policy_client_unittest.cc", | 619 "dbus/fake_auth_policy_client_unittest.cc", |
| 619 "dbus/fake_cryptohome_client_unittest.cc", | 620 "dbus/fake_cryptohome_client_unittest.cc", |
| 620 "dbus/fake_easy_unlock_client_unittest.cc", | 621 "dbus/fake_easy_unlock_client_unittest.cc", |
| 621 "dbus/fake_power_manager_client_unittest.cc", | 622 "dbus/fake_power_manager_client_unittest.cc", |
| 622 "dbus/gsm_sms_client_unittest.cc", | 623 "dbus/gsm_sms_client_unittest.cc", |
| 623 "dbus/modem_messaging_client_unittest.cc", | 624 "dbus/modem_messaging_client_unittest.cc", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 proto_out_dir = "chromeos/cryptohome" | 736 proto_out_dir = "chromeos/cryptohome" |
| 736 } | 737 } |
| 737 | 738 |
| 738 proto_library("authpolicy_proto") { | 739 proto_library("authpolicy_proto") { |
| 739 sources = [ | 740 sources = [ |
| 740 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 741 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
| 741 ] | 742 ] |
| 742 | 743 |
| 743 proto_out_dir = "chromeos/dbus/authpolicy" | 744 proto_out_dir = "chromeos/dbus/authpolicy" |
| 744 } | 745 } |
| OLD | NEW |