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

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
« no previous file with comments | « chrome/browser/media/encrypted_media_browsertest.cc ('k') | chrome/common/chrome_constants.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/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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 520
521 if (enable_vr_shell) { 521 if (enable_vr_shell) {
522 defines += [ "ENABLE_VR_SHELL" ] 522 defines += [ "ENABLE_VR_SHELL" ]
523 } 523 }
524 524
525 if (is_linux) { 525 if (is_linux) {
526 deps = [ 526 deps = [
527 "//sandbox/linux:sandbox_services", 527 "//sandbox/linux:sandbox_services",
528 ] 528 ]
529 } 529 }
530
531 if (enable_pepper_cdms) {
532 sources += [
533 "media/cdm_host_file_path.cc",
534 "media/cdm_host_file_path.h",
535 ]
536 public_deps += [ "//chrome/common:version_header" ]
537 }
530 } 538 }
531 539
532 process_version("version_header") { 540 process_version("version_header") {
533 # TODO(brettw) this should have more reduced visibility, but chrome/browser 541 # TODO(brettw) this should have more reduced visibility, but chrome/browser
534 # currently depends on this. 542 # currently depends on this.
535 #visibility = [ ":*" ] 543 #visibility = [ ":*" ]
536 544
537 sources = [ 545 sources = [
538 "//build/util/LASTCHANGE", 546 "//build/util/LASTCHANGE",
539 "//chrome/VERSION", 547 "//chrome/VERSION",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 mojom("instant_mojom") { 700 mojom("instant_mojom") {
693 sources = [ 701 sources = [
694 "instant.mojom", 702 "instant.mojom",
695 ] 703 ]
696 704
697 public_deps = [ 705 public_deps = [
698 "//mojo/common:common_custom_types", 706 "//mojo/common:common_custom_types",
699 "//url/mojo:url_mojom_gurl", 707 "//url/mojo:url_mojom_gurl",
700 ] 708 ]
701 } 709 }
OLDNEW
« no previous file with comments | « chrome/browser/media/encrypted_media_browsertest.cc ('k') | chrome/common/chrome_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698