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

Side by Side Diff: chrome/common/BUILD.gn

Issue 2745653008: [Media Router] Parse device description xml in utility process (Closed)
Patch Set: use mojo instead of IPC Created 3 years, 9 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
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path.
9 import("//extensions/features/features.gni") 9 import("//extensions/features/features.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 ] 526 ]
527 } 527 }
528 528
529 if (enable_pepper_cdms) { 529 if (enable_pepper_cdms) {
530 sources += [ 530 sources += [
531 "media/cdm_host_file_path.cc", 531 "media/cdm_host_file_path.cc",
532 "media/cdm_host_file_path.h", 532 "media/cdm_host_file_path.h",
533 ] 533 ]
534 public_deps += [ "//chrome/common:version_header" ] 534 public_deps += [ "//chrome/common:version_header" ]
535 } 535 }
536
537 if (enable_media_router) {
538 sources += [
539 "media_router/dial_device_description.cc",
540 "media_router/dial_device_description.h",
541 ]
542 }
536 } 543 }
537 544
538 process_version("version_header") { 545 process_version("version_header") {
539 # TODO(brettw) this should have more reduced visibility, but chrome/browser 546 # TODO(brettw) this should have more reduced visibility, but chrome/browser
540 # currently depends on this. 547 # currently depends on this.
541 #visibility = [ ":*" ] 548 #visibility = [ ":*" ]
542 549
543 sources = [ 550 sources = [
544 "//build/util/LASTCHANGE", 551 "//build/util/LASTCHANGE",
545 "//chrome/VERSION", 552 "//chrome/VERSION",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 mojom("instant_mojom") { 719 mojom("instant_mojom") {
713 sources = [ 720 sources = [
714 "instant.mojom", 721 "instant.mojom",
715 ] 722 ]
716 723
717 public_deps = [ 724 public_deps = [
718 "//mojo/common:common_custom_types", 725 "//mojo/common:common_custom_types",
719 "//url/mojo:url_mojom_gurl", 726 "//url/mojo:url_mojom_gurl",
720 ] 727 ]
721 } 728 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698