| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 "attestation/mock_attestation_flow.cc", | 529 "attestation/mock_attestation_flow.cc", |
| 530 "attestation/mock_attestation_flow.h", | 530 "attestation/mock_attestation_flow.h", |
| 531 "chromeos_test_utils.cc", | 531 "chromeos_test_utils.cc", |
| 532 "chromeos_test_utils.h", | 532 "chromeos_test_utils.h", |
| 533 "cryptohome/mock_async_method_caller.cc", | 533 "cryptohome/mock_async_method_caller.cc", |
| 534 "cryptohome/mock_async_method_caller.h", | 534 "cryptohome/mock_async_method_caller.h", |
| 535 "cryptohome/mock_homedir_methods.cc", | 535 "cryptohome/mock_homedir_methods.cc", |
| 536 "cryptohome/mock_homedir_methods.h", | 536 "cryptohome/mock_homedir_methods.h", |
| 537 "dbus/biod/test_utils.cc", | 537 "dbus/biod/test_utils.cc", |
| 538 "dbus/biod/test_utils.h", | 538 "dbus/biod/test_utils.h", |
| 539 "dbus/mock_auth_policy_client.cc", |
| 540 "dbus/mock_auth_policy_client.h", |
| 539 "dbus/mock_cryptohome_client.cc", | 541 "dbus/mock_cryptohome_client.cc", |
| 540 "dbus/mock_cryptohome_client.h", | 542 "dbus/mock_cryptohome_client.h", |
| 541 "dbus/mock_lorgnette_manager_client.cc", | 543 "dbus/mock_lorgnette_manager_client.cc", |
| 542 "dbus/mock_lorgnette_manager_client.h", | 544 "dbus/mock_lorgnette_manager_client.h", |
| 543 "dbus/mock_permission_broker_client.cc", | 545 "dbus/mock_permission_broker_client.cc", |
| 544 "dbus/mock_permission_broker_client.h", | 546 "dbus/mock_permission_broker_client.h", |
| 545 "dbus/mock_session_manager_client.cc", | 547 "dbus/mock_session_manager_client.cc", |
| 546 "dbus/mock_session_manager_client.h", | 548 "dbus/mock_session_manager_client.h", |
| 547 "dbus/mock_shill_manager_client.cc", | 549 "dbus/mock_shill_manager_client.cc", |
| 548 "dbus/mock_shill_manager_client.h", | 550 "dbus/mock_shill_manager_client.h", |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 proto_out_dir = "chromeos/dbus/biod" | 796 proto_out_dir = "chromeos/dbus/biod" |
| 795 } | 797 } |
| 796 | 798 |
| 797 proto_library("media_perception_proto") { | 799 proto_library("media_perception_proto") { |
| 798 sources = [ | 800 sources = [ |
| 799 "dbus/proto/media_perception.proto", | 801 "dbus/proto/media_perception.proto", |
| 800 ] | 802 ] |
| 801 | 803 |
| 802 proto_out_dir = "chromeos/media_perception" | 804 proto_out_dir = "chromeos/media_perception" |
| 803 } | 805 } |
| OLD | NEW |