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

Side by Side Diff: chromeos/BUILD.gn

Issue 2783823004: chromeos: Add D-Bus config for org.chromium.NetworkProxyService. (Closed)
Patch Set: 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/dbus/services/README.md » ('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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 defines = [ "CHROMEOS_IMPLEMENTATION" ] 461 defines = [ "CHROMEOS_IMPLEMENTATION" ]
462 if (current_cpu == "arm" || current_cpu == "x86") { 462 if (current_cpu == "arm" || current_cpu == "x86") {
463 defines += [ "BINDER_IPC_32BIT" ] 463 defines += [ "BINDER_IPC_32BIT" ]
464 } 464 }
465 } 465 }
466 466
467 copy("dbus_service_files") { 467 copy("dbus_service_files") {
468 sources = [ 468 sources = [
469 "dbus/services/org.chromium.LibCrosService.conf", 469 "dbus/services/org.chromium.LibCrosService.conf",
470 "dbus/services/org.chromium.LivenessService.conf", 470 "dbus/services/org.chromium.LivenessService.conf",
471 "dbus/services/org.chromium.NetworkProxyService.conf",
471 ] 472 ]
472 outputs = [ 473 outputs = [
473 "$root_out_dir/dbus/{{source_file_part}}", 474 "$root_out_dir/dbus/{{source_file_part}}",
474 ] 475 ]
475 } 476 }
476 477
477 # This must be a static library instead of a source set because some of the 478 # This must be a static library instead of a source set because some of the
478 # files pull in things with dependencies that aren't linked in all cases. 479 # files pull in things with dependencies that aren't linked in all cases.
479 # 480 #
480 # TODO this should probably be changed such that it links in all cases and 481 # TODO this should probably be changed such that it links in all cases and
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 proto_out_dir = "chromeos/cryptohome" 727 proto_out_dir = "chromeos/cryptohome"
727 } 728 }
728 729
729 proto_library("authpolicy_proto") { 730 proto_library("authpolicy_proto") {
730 sources = [ 731 sources = [
731 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data .proto", 732 "//third_party/cros_system_api/dbus/authpolicy/active_directory_account_data .proto",
732 ] 733 ]
733 734
734 proto_out_dir = "chromeos/dbus/authpolicy" 735 proto_out_dir = "chromeos/dbus/authpolicy"
735 } 736 }
OLDNEW
« no previous file with comments | « no previous file | chromeos/dbus/services/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698