| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 "hugepage_text/hugepage_text.cc", | 271 "hugepage_text/hugepage_text.cc", |
| 272 "hugepage_text/hugepage_text.h", | 272 "hugepage_text/hugepage_text.h", |
| 273 "login/auth/auth_attempt_state.cc", | 273 "login/auth/auth_attempt_state.cc", |
| 274 "login/auth/auth_attempt_state.h", | 274 "login/auth/auth_attempt_state.h", |
| 275 "login/auth/auth_attempt_state_resolver.cc", | 275 "login/auth/auth_attempt_state_resolver.cc", |
| 276 "login/auth/auth_attempt_state_resolver.h", | 276 "login/auth/auth_attempt_state_resolver.h", |
| 277 "login/auth/auth_status_consumer.cc", | 277 "login/auth/auth_status_consumer.cc", |
| 278 "login/auth/auth_status_consumer.h", | 278 "login/auth/auth_status_consumer.h", |
| 279 "login/auth/authenticator.cc", | 279 "login/auth/authenticator.cc", |
| 280 "login/auth/authenticator.h", | 280 "login/auth/authenticator.h", |
| 281 "login/auth/authpolicy_login_helper.cc", |
| 282 "login/auth/authpolicy_login_helper.h", |
| 281 "login/auth/cryptohome_authenticator.cc", | 283 "login/auth/cryptohome_authenticator.cc", |
| 282 "login/auth/cryptohome_authenticator.h", | 284 "login/auth/cryptohome_authenticator.h", |
| 283 "login/auth/extended_authenticator.cc", | 285 "login/auth/extended_authenticator.cc", |
| 284 "login/auth/extended_authenticator.h", | 286 "login/auth/extended_authenticator.h", |
| 285 "login/auth/extended_authenticator_impl.cc", | 287 "login/auth/extended_authenticator_impl.cc", |
| 286 "login/auth/extended_authenticator_impl.h", | 288 "login/auth/extended_authenticator_impl.h", |
| 287 "login/auth/key.cc", | 289 "login/auth/key.cc", |
| 288 "login/auth/key.h", | 290 "login/auth/key.h", |
| 289 "login/auth/login_performer.cc", | 291 "login/auth/login_performer.cc", |
| 290 "login/auth/login_performer.h", | 292 "login/auth/login_performer.h", |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 proto_out_dir = "chromeos/cryptohome" | 736 proto_out_dir = "chromeos/cryptohome" |
| 735 } | 737 } |
| 736 | 738 |
| 737 proto_library("authpolicy_proto") { | 739 proto_library("authpolicy_proto") { |
| 738 sources = [ | 740 sources = [ |
| 739 "//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", |
| 740 ] | 742 ] |
| 741 | 743 |
| 742 proto_out_dir = "chromeos/dbus/authpolicy" | 744 proto_out_dir = "chromeos/dbus/authpolicy" |
| 743 } | 745 } |
| OLD | NEW |