| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 "hugepage_text/hugepage_text.cc", | 267 "hugepage_text/hugepage_text.cc", |
| 268 "hugepage_text/hugepage_text.h", | 268 "hugepage_text/hugepage_text.h", |
| 269 "login/auth/auth_attempt_state.cc", | 269 "login/auth/auth_attempt_state.cc", |
| 270 "login/auth/auth_attempt_state.h", | 270 "login/auth/auth_attempt_state.h", |
| 271 "login/auth/auth_attempt_state_resolver.cc", | 271 "login/auth/auth_attempt_state_resolver.cc", |
| 272 "login/auth/auth_attempt_state_resolver.h", | 272 "login/auth/auth_attempt_state_resolver.h", |
| 273 "login/auth/auth_status_consumer.cc", | 273 "login/auth/auth_status_consumer.cc", |
| 274 "login/auth/auth_status_consumer.h", | 274 "login/auth/auth_status_consumer.h", |
| 275 "login/auth/authenticator.cc", | 275 "login/auth/authenticator.cc", |
| 276 "login/auth/authenticator.h", | 276 "login/auth/authenticator.h", |
| 277 "login/auth/authpolicy_login_helper.cc", |
| 278 "login/auth/authpolicy_login_helper.h", |
| 277 "login/auth/cryptohome_authenticator.cc", | 279 "login/auth/cryptohome_authenticator.cc", |
| 278 "login/auth/cryptohome_authenticator.h", | 280 "login/auth/cryptohome_authenticator.h", |
| 279 "login/auth/extended_authenticator.cc", | 281 "login/auth/extended_authenticator.cc", |
| 280 "login/auth/extended_authenticator.h", | 282 "login/auth/extended_authenticator.h", |
| 281 "login/auth/extended_authenticator_impl.cc", | 283 "login/auth/extended_authenticator_impl.cc", |
| 282 "login/auth/extended_authenticator_impl.h", | 284 "login/auth/extended_authenticator_impl.h", |
| 283 "login/auth/key.cc", | 285 "login/auth/key.cc", |
| 284 "login/auth/key.h", | 286 "login/auth/key.h", |
| 285 "login/auth/login_performer.cc", | 287 "login/auth/login_performer.cc", |
| 286 "login/auth/login_performer.h", | 288 "login/auth/login_performer.h", |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 proto_out_dir = "chromeos/cryptohome" | 731 proto_out_dir = "chromeos/cryptohome" |
| 730 } | 732 } |
| 731 | 733 |
| 732 proto_library("authpolicy_proto") { | 734 proto_library("authpolicy_proto") { |
| 733 sources = [ | 735 sources = [ |
| 734 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 736 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
| 735 ] | 737 ] |
| 736 | 738 |
| 737 proto_out_dir = "chromeos/dbus/authpolicy" | 739 proto_out_dir = "chromeos/dbus/authpolicy" |
| 738 } | 740 } |
| OLD | NEW |