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

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

Issue 2582463003: media: Verify CDM Host files (Closed)
Patch Set: comments addressed Created 3 years, 11 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 523
524 if (enable_vr_shell) { 524 if (enable_vr_shell) {
525 defines += [ "ENABLE_VR_SHELL" ] 525 defines += [ "ENABLE_VR_SHELL" ]
526 } 526 }
527 527
528 if (is_linux) { 528 if (is_linux) {
529 deps = [ 529 deps = [
530 "//sandbox/linux:sandbox_services", 530 "//sandbox/linux:sandbox_services",
531 ] 531 ]
532 } 532 }
533
534 if (enable_pepper_cdms) {
535 sources += [
536 "media/cdm_host_file_path.cc",
537 "media/cdm_host_file_path.h",
538 ]
539 public_deps += [ "//chrome/common:version_header" ]
540 }
533 } 541 }
534 542
535 process_version("version_header") { 543 process_version("version_header") {
536 # TODO(brettw) this should have more reduced visibility, but chrome/browser 544 # TODO(brettw) this should have more reduced visibility, but chrome/browser
537 # currently depends on this. 545 # currently depends on this.
538 #visibility = [ ":*" ] 546 #visibility = [ ":*" ]
539 547
540 sources = [ 548 sources = [
541 "//build/util/LASTCHANGE", 549 "//build/util/LASTCHANGE",
542 "//chrome/VERSION", 550 "//chrome/VERSION",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 mojom("instant_mojom") { 704 mojom("instant_mojom") {
697 sources = [ 705 sources = [
698 "instant.mojom", 706 "instant.mojom",
699 ] 707 ]
700 708
701 public_deps = [ 709 public_deps = [
702 "//mojo/common:common_custom_types", 710 "//mojo/common:common_custom_types",
703 "//url/mojo:url_mojom_gurl", 711 "//url/mojo:url_mojom_gurl",
704 ] 712 ]
705 } 713 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698