| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 "disks/mock_disk_mount_manager.cc", | 539 "disks/mock_disk_mount_manager.cc", |
| 540 "disks/mock_disk_mount_manager.h", | 540 "disks/mock_disk_mount_manager.h", |
| 541 "login/auth/fake_extended_authenticator.cc", | 541 "login/auth/fake_extended_authenticator.cc", |
| 542 "login/auth/fake_extended_authenticator.h", | 542 "login/auth/fake_extended_authenticator.h", |
| 543 "login/auth/mock_auth_attempt_state_resolver.cc", | 543 "login/auth/mock_auth_attempt_state_resolver.cc", |
| 544 "login/auth/mock_auth_attempt_state_resolver.h", | 544 "login/auth/mock_auth_attempt_state_resolver.h", |
| 545 "login/auth/mock_auth_status_consumer.cc", | 545 "login/auth/mock_auth_status_consumer.cc", |
| 546 "login/auth/mock_auth_status_consumer.h", | 546 "login/auth/mock_auth_status_consumer.h", |
| 547 "login/auth/mock_url_fetchers.cc", | 547 "login/auth/mock_url_fetchers.cc", |
| 548 "login/auth/mock_url_fetchers.h", | 548 "login/auth/mock_url_fetchers.h", |
| 549 "login/scoped_test_public_session_login_state.cc", |
| 550 "login/scoped_test_public_session_login_state.h", |
| 549 "network/fake_network_device_handler.cc", | 551 "network/fake_network_device_handler.cc", |
| 550 "network/fake_network_device_handler.h", | 552 "network/fake_network_device_handler.h", |
| 551 "network/mock_managed_network_configuration_handler.cc", | 553 "network/mock_managed_network_configuration_handler.cc", |
| 552 "network/mock_managed_network_configuration_handler.h", | 554 "network/mock_managed_network_configuration_handler.h", |
| 553 "network/mock_network_device_handler.cc", | 555 "network/mock_network_device_handler.cc", |
| 554 "network/mock_network_device_handler.h", | 556 "network/mock_network_device_handler.h", |
| 555 "network/network_state_test.cc", | 557 "network/network_state_test.cc", |
| 556 "network/network_state_test.h", | 558 "network/network_state_test.h", |
| 557 "network/onc/onc_test_utils.cc", | 559 "network/onc/onc_test_utils.cc", |
| 558 "network/onc/onc_test_utils.h", | 560 "network/onc/onc_test_utils.h", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 proto_out_dir = "chromeos/cryptohome" | 747 proto_out_dir = "chromeos/cryptohome" |
| 746 } | 748 } |
| 747 | 749 |
| 748 proto_library("authpolicy_proto") { | 750 proto_library("authpolicy_proto") { |
| 749 sources = [ | 751 sources = [ |
| 750 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 752 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
| 751 ] | 753 ] |
| 752 | 754 |
| 753 proto_out_dir = "chromeos/dbus/authpolicy" | 755 proto_out_dir = "chromeos/dbus/authpolicy" |
| 754 } | 756 } |
| OLD | NEW |