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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 "tpm/tpm_token_loader.h", | 461 "tpm/tpm_token_loader.h", |
462 ] | 462 ] |
463 defines = [ "CHROMEOS_IMPLEMENTATION" ] | 463 defines = [ "CHROMEOS_IMPLEMENTATION" ] |
464 if (current_cpu == "arm" || current_cpu == "x86") { | 464 if (current_cpu == "arm" || current_cpu == "x86") { |
465 defines += [ "BINDER_IPC_32BIT" ] | 465 defines += [ "BINDER_IPC_32BIT" ] |
466 } | 466 } |
467 } | 467 } |
468 | 468 |
469 copy("dbus_service_files") { | 469 copy("dbus_service_files") { |
470 sources = [ | 470 sources = [ |
471 "dbus/services/org.chromium.KioskAppService.conf", | |
472 "dbus/services/org.chromium.LibCrosService.conf", | 471 "dbus/services/org.chromium.LibCrosService.conf", |
473 "dbus/services/org.chromium.LivenessService.conf", | 472 "dbus/services/org.chromium.LivenessService.conf", |
474 "dbus/services/org.chromium.NetworkProxyService.conf", | 473 "dbus/services/org.chromium.NetworkProxyService.conf", |
475 ] | 474 ] |
476 outputs = [ | 475 outputs = [ |
477 "$root_out_dir/dbus/{{source_file_part}}", | 476 "$root_out_dir/dbus/{{source_file_part}}", |
478 ] | 477 ] |
479 } | 478 } |
480 | 479 |
481 # This must be a static library instead of a source set because some of the | 480 # This must be a static library instead of a source set because some of the |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
733 proto_out_dir = "chromeos/cryptohome" | 732 proto_out_dir = "chromeos/cryptohome" |
734 } | 733 } |
735 | 734 |
736 proto_library("authpolicy_proto") { | 735 proto_library("authpolicy_proto") { |
737 sources = [ | 736 sources = [ |
738 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", | 737 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data
.proto", |
739 ] | 738 ] |
740 | 739 |
741 proto_out_dir = "chromeos/dbus/authpolicy" | 740 proto_out_dir = "chromeos/dbus/authpolicy" |
742 } | 741 } |
OLD | NEW |