| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 "network/fake_network_device_handler.cc", | 555 "network/fake_network_device_handler.cc", |
| 556 "network/fake_network_device_handler.h", | 556 "network/fake_network_device_handler.h", |
| 557 "network/mock_managed_network_configuration_handler.cc", | 557 "network/mock_managed_network_configuration_handler.cc", |
| 558 "network/mock_managed_network_configuration_handler.h", | 558 "network/mock_managed_network_configuration_handler.h", |
| 559 "network/mock_network_device_handler.cc", | 559 "network/mock_network_device_handler.cc", |
| 560 "network/mock_network_device_handler.h", | 560 "network/mock_network_device_handler.h", |
| 561 "network/network_state_test.cc", | 561 "network/network_state_test.cc", |
| 562 "network/network_state_test.h", | 562 "network/network_state_test.h", |
| 563 "network/onc/onc_test_utils.cc", | 563 "network/onc/onc_test_utils.cc", |
| 564 "network/onc/onc_test_utils.h", | 564 "network/onc/onc_test_utils.h", |
| 565 "network/portal_detector/mock_network_portal_detector.cc", |
| 566 "network/portal_detector/mock_network_portal_detector.h", |
| 565 ] | 567 ] |
| 566 } | 568 } |
| 567 | 569 |
| 568 static_library("test_support_without_gmock") { | 570 static_library("test_support_without_gmock") { |
| 569 testonly = true | 571 testonly = true |
| 570 configs += [ "//build/config/linux/dbus" ] | 572 configs += [ "//build/config/linux/dbus" ] |
| 571 deps = [ | 573 deps = [ |
| 572 ":attestation_proto", | 574 ":attestation_proto", |
| 573 ":biod_proto", | 575 ":biod_proto", |
| 574 ":chromeos", | 576 ":chromeos", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 762 } | 764 } |
| 763 | 765 |
| 764 proto_library("biod_proto") { | 766 proto_library("biod_proto") { |
| 765 sources = [ | 767 sources = [ |
| 766 "//third_party/cros_system_api/dbus/biod/constants.proto", | 768 "//third_party/cros_system_api/dbus/biod/constants.proto", |
| 767 "//third_party/cros_system_api/dbus/biod/messages.proto", | 769 "//third_party/cros_system_api/dbus/biod/messages.proto", |
| 768 ] | 770 ] |
| 769 | 771 |
| 770 proto_out_dir = "chromeos/dbus/biod" | 772 proto_out_dir = "chromeos/dbus/biod" |
| 771 } | 773 } |
| OLD | NEW |