| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "network/managed_network_configuration_handler.cc", | 329 "network/managed_network_configuration_handler.cc", |
| 330 "network/managed_network_configuration_handler.h", | 330 "network/managed_network_configuration_handler.h", |
| 331 "network/managed_network_configuration_handler_impl.cc", | 331 "network/managed_network_configuration_handler_impl.cc", |
| 332 "network/managed_network_configuration_handler_impl.h", | 332 "network/managed_network_configuration_handler_impl.h", |
| 333 "network/managed_state.cc", | 333 "network/managed_state.cc", |
| 334 "network/managed_state.h", | 334 "network/managed_state.h", |
| 335 "network/network_activation_handler.cc", | 335 "network/network_activation_handler.cc", |
| 336 "network/network_activation_handler.h", | 336 "network/network_activation_handler.h", |
| 337 "network/network_cert_migrator.cc", | 337 "network/network_cert_migrator.cc", |
| 338 "network/network_cert_migrator.h", | 338 "network/network_cert_migrator.h", |
| 339 "network/network_certificate_handler.cc", |
| 340 "network/network_certificate_handler.h", |
| 339 "network/network_change_notifier_chromeos.cc", | 341 "network/network_change_notifier_chromeos.cc", |
| 340 "network/network_change_notifier_chromeos.h", | 342 "network/network_change_notifier_chromeos.h", |
| 341 "network/network_change_notifier_factory_chromeos.cc", | 343 "network/network_change_notifier_factory_chromeos.cc", |
| 342 "network/network_change_notifier_factory_chromeos.h", | 344 "network/network_change_notifier_factory_chromeos.h", |
| 343 "network/network_configuration_handler.cc", | 345 "network/network_configuration_handler.cc", |
| 344 "network/network_configuration_handler.h", | 346 "network/network_configuration_handler.h", |
| 345 "network/network_configuration_observer.h", | 347 "network/network_configuration_observer.h", |
| 346 "network/network_connect.cc", | 348 "network/network_connect.cc", |
| 347 "network/network_connect.h", | 349 "network/network_connect.h", |
| 348 "network/network_connection_handler.cc", | 350 "network/network_connection_handler.cc", |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 proto_out_dir = "chromeos/dbus/biod" | 782 proto_out_dir = "chromeos/dbus/biod" |
| 781 } | 783 } |
| 782 | 784 |
| 783 proto_library("media_perception_proto") { | 785 proto_library("media_perception_proto") { |
| 784 sources = [ | 786 sources = [ |
| 785 "dbus/proto/media_perception.proto", | 787 "dbus/proto/media_perception.proto", |
| 786 ] | 788 ] |
| 787 | 789 |
| 788 proto_out_dir = "chromeos/media_perception" | 790 proto_out_dir = "chromeos/media_perception" |
| 789 } | 791 } |
| OLD | NEW |