| 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 "process_proxy/process_proxy_registry.cc", | 430 "process_proxy/process_proxy_registry.cc", |
| 431 "process_proxy/process_proxy_registry.h", | 431 "process_proxy/process_proxy_registry.h", |
| 432 "settings/cros_settings_names.cc", | 432 "settings/cros_settings_names.cc", |
| 433 "settings/cros_settings_names.h", | 433 "settings/cros_settings_names.h", |
| 434 "settings/cros_settings_provider.cc", | 434 "settings/cros_settings_provider.cc", |
| 435 "settings/cros_settings_provider.h", | 435 "settings/cros_settings_provider.h", |
| 436 "settings/timezone_settings.cc", | 436 "settings/timezone_settings.cc", |
| 437 "settings/timezone_settings.h", | 437 "settings/timezone_settings.h", |
| 438 "settings/timezone_settings_helper.cc", | 438 "settings/timezone_settings_helper.cc", |
| 439 "settings/timezone_settings_helper.h", | 439 "settings/timezone_settings_helper.h", |
| 440 "system/cpu_temperature_reader.cc", |
| 441 "system/cpu_temperature_reader.h", |
| 440 "system/devicemode.cc", | 442 "system/devicemode.cc", |
| 441 "system/devicemode.h", | 443 "system/devicemode.h", |
| 442 "system/devicetype.cc", | 444 "system/devicetype.cc", |
| 443 "system/devicetype.h", | 445 "system/devicetype.h", |
| 444 | 446 |
| 445 # Used when running mash, both on Linux and on real devices. | 447 # Used when running mash, both on Linux and on real devices. |
| 446 "system/fake_statistics_provider.cc", | 448 "system/fake_statistics_provider.cc", |
| 447 "system/fake_statistics_provider.h", | 449 "system/fake_statistics_provider.h", |
| 448 "system/name_value_pairs_parser.cc", | 450 "system/name_value_pairs_parser.cc", |
| 449 "system/name_value_pairs_parser.h", | 451 "system/name_value_pairs_parser.h", |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 "network/onc/onc_utils_unittest.cc", | 667 "network/onc/onc_utils_unittest.cc", |
| 666 "network/onc/onc_validator_unittest.cc", | 668 "network/onc/onc_validator_unittest.cc", |
| 667 "network/prohibited_technologies_handler_unittest.cc", | 669 "network/prohibited_technologies_handler_unittest.cc", |
| 668 "network/shill_property_handler_unittest.cc", | 670 "network/shill_property_handler_unittest.cc", |
| 669 "printing/ppd_cache_unittest.cc", | 671 "printing/ppd_cache_unittest.cc", |
| 670 "printing/ppd_provider_unittest.cc", | 672 "printing/ppd_provider_unittest.cc", |
| 671 "printing/printer_translator_unittest.cc", | 673 "printing/printer_translator_unittest.cc", |
| 672 "process_proxy/process_output_watcher_unittest.cc", | 674 "process_proxy/process_output_watcher_unittest.cc", |
| 673 "process_proxy/process_proxy_unittest.cc", | 675 "process_proxy/process_proxy_unittest.cc", |
| 674 "settings/timezone_settings_unittest.cc", | 676 "settings/timezone_settings_unittest.cc", |
| 677 "system/cpu_temperature_reader_unittest.cc", |
| 675 "system/name_value_pairs_parser_unittest.cc", | 678 "system/name_value_pairs_parser_unittest.cc", |
| 676 "system/version_loader_unittest.cc", | 679 "system/version_loader_unittest.cc", |
| 677 "timezone/timezone_unittest.cc", | 680 "timezone/timezone_unittest.cc", |
| 678 "tpm/tpm_token_info_getter_unittest.cc", | 681 "tpm/tpm_token_info_getter_unittest.cc", |
| 679 ] | 682 ] |
| 680 if (use_binder) { | 683 if (use_binder) { |
| 681 if (current_cpu == "arm" || current_cpu == "x86") { | 684 if (current_cpu == "arm" || current_cpu == "x86") { |
| 682 defines += [ "BINDER_IPC_32BIT" ] | 685 defines += [ "BINDER_IPC_32BIT" ] |
| 683 } | 686 } |
| 684 sources += [ | 687 sources += [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 proto_out_dir = "chromeos/cryptohome" | 740 proto_out_dir = "chromeos/cryptohome" |
| 738 } | 741 } |
| 739 | 742 |
| 740 proto_library("authpolicy_proto") { | 743 proto_library("authpolicy_proto") { |
| 741 sources = [ | 744 sources = [ |
| 742 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 745 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
| 743 ] | 746 ] |
| 744 | 747 |
| 745 proto_out_dir = "chromeos/dbus/authpolicy" | 748 proto_out_dir = "chromeos/dbus/authpolicy" |
| 746 } | 749 } |
| OLD | NEW |