Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(694)

Side by Side Diff: chromeos/BUILD.gn

Issue 2838853002: Reland of: chromeos: Add CPU temperature reader (Closed)
Patch Set: Add CHROMEOS_EXPORT Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chromeos/system/cpu_temperature_reader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 "process_proxy/process_proxy_registry.cc", 432 "process_proxy/process_proxy_registry.cc",
433 "process_proxy/process_proxy_registry.h", 433 "process_proxy/process_proxy_registry.h",
434 "settings/cros_settings_names.cc", 434 "settings/cros_settings_names.cc",
435 "settings/cros_settings_names.h", 435 "settings/cros_settings_names.h",
436 "settings/cros_settings_provider.cc", 436 "settings/cros_settings_provider.cc",
437 "settings/cros_settings_provider.h", 437 "settings/cros_settings_provider.h",
438 "settings/timezone_settings.cc", 438 "settings/timezone_settings.cc",
439 "settings/timezone_settings.h", 439 "settings/timezone_settings.h",
440 "settings/timezone_settings_helper.cc", 440 "settings/timezone_settings_helper.cc",
441 "settings/timezone_settings_helper.h", 441 "settings/timezone_settings_helper.h",
442 "system/cpu_temperature_reader.cc",
443 "system/cpu_temperature_reader.h",
442 "system/devicemode.cc", 444 "system/devicemode.cc",
443 "system/devicemode.h", 445 "system/devicemode.h",
444 "system/devicetype.cc", 446 "system/devicetype.cc",
445 "system/devicetype.h", 447 "system/devicetype.h",
446 448
447 # Used when running mash, both on Linux and on real devices. 449 # Used when running mash, both on Linux and on real devices.
448 "system/fake_statistics_provider.cc", 450 "system/fake_statistics_provider.cc",
449 "system/fake_statistics_provider.h", 451 "system/fake_statistics_provider.h",
450 "system/name_value_pairs_parser.cc", 452 "system/name_value_pairs_parser.cc",
451 "system/name_value_pairs_parser.h", 453 "system/name_value_pairs_parser.h",
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 "network/onc/onc_utils_unittest.cc", 672 "network/onc/onc_utils_unittest.cc",
671 "network/onc/onc_validator_unittest.cc", 673 "network/onc/onc_validator_unittest.cc",
672 "network/prohibited_technologies_handler_unittest.cc", 674 "network/prohibited_technologies_handler_unittest.cc",
673 "network/shill_property_handler_unittest.cc", 675 "network/shill_property_handler_unittest.cc",
674 "printing/ppd_cache_unittest.cc", 676 "printing/ppd_cache_unittest.cc",
675 "printing/ppd_provider_unittest.cc", 677 "printing/ppd_provider_unittest.cc",
676 "printing/printer_translator_unittest.cc", 678 "printing/printer_translator_unittest.cc",
677 "process_proxy/process_output_watcher_unittest.cc", 679 "process_proxy/process_output_watcher_unittest.cc",
678 "process_proxy/process_proxy_unittest.cc", 680 "process_proxy/process_proxy_unittest.cc",
679 "settings/timezone_settings_unittest.cc", 681 "settings/timezone_settings_unittest.cc",
682 "system/cpu_temperature_reader_unittest.cc",
680 "system/name_value_pairs_parser_unittest.cc", 683 "system/name_value_pairs_parser_unittest.cc",
681 "system/version_loader_unittest.cc", 684 "system/version_loader_unittest.cc",
682 "timezone/timezone_unittest.cc", 685 "timezone/timezone_unittest.cc",
683 "tpm/tpm_token_info_getter_unittest.cc", 686 "tpm/tpm_token_info_getter_unittest.cc",
684 ] 687 ]
685 if (use_binder) { 688 if (use_binder) {
686 if (current_cpu == "arm" || current_cpu == "x86") { 689 if (current_cpu == "arm" || current_cpu == "x86") {
687 defines += [ "BINDER_IPC_32BIT" ] 690 defines += [ "BINDER_IPC_32BIT" ]
688 } 691 }
689 sources += [ 692 sources += [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 proto_out_dir = "chromeos/cryptohome" 745 proto_out_dir = "chromeos/cryptohome"
743 } 746 }
744 747
745 proto_library("authpolicy_proto") { 748 proto_library("authpolicy_proto") {
746 sources = [ 749 sources = [
747 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data .proto", 750 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data .proto",
748 ] 751 ]
749 752
750 proto_out_dir = "chromeos/dbus/authpolicy" 753 proto_out_dir = "chromeos/dbus/authpolicy"
751 } 754 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/system/cpu_temperature_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698