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

Side by Side Diff: content/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/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//sandbox/features.gni") 10 import("//sandbox/features.gni")
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 deps += [ "//media/gpu" ] 526 deps += [ "//media/gpu" ]
527 } 527 }
528 528
529 if (enable_ipc_fuzzer) { 529 if (enable_ipc_fuzzer) {
530 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] 530 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
531 sources += [ 531 sources += [
532 "external_ipc_dumper.cc", 532 "external_ipc_dumper.cc",
533 "external_ipc_dumper.h", 533 "external_ipc_dumper.h",
534 ] 534 ]
535 } 535 }
536
537 if (enable_pepper_cdms) {
538 sources += [
539 "media/cdm_host_file.cc",
540 "media/cdm_host_file.h",
541 "media/cdm_host_files.cc",
542 "media/cdm_host_files.h",
543 ]
544 deps += [
545 "//media:cdm_paths",
546
547 # Needed for finding CDM path from CDM adapter path.
548 # TODO(xhwang): Remove this dependency when CDM adapter is deprecated.
549 # See http://crbug.com/403462
550 "//third_party/widevine/cdm:headers",
551 ]
552 }
536 } 553 }
537 554
538 # See comment at the top of //content/BUILD.gn for how this works. 555 # See comment at the top of //content/BUILD.gn for how this works.
539 group("for_content_tests") { 556 group("for_content_tests") {
540 visibility = [ "//content/test/*" ] 557 visibility = [ "//content/test/*" ]
541 if (!is_component_build) { 558 if (!is_component_build) {
542 public_deps = [ 559 public_deps = [
543 ":common", 560 ":common",
544 ] 561 ]
545 } 562 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 "//ui/gfx/geometry/mojo", 617 "//ui/gfx/geometry/mojo",
601 "//ui/gfx/mojo", 618 "//ui/gfx/mojo",
602 "//url/mojo:url_mojom_gurl", 619 "//url/mojo:url_mojom_gurl",
603 "//url/mojo:url_mojom_origin", 620 "//url/mojo:url_mojom_origin",
604 ] 621 ]
605 622
606 export_class_attribute = "CONTENT_EXPORT" 623 export_class_attribute = "CONTENT_EXPORT"
607 export_define = "CONTENT_IMPLEMENTATION=1" 624 export_define = "CONTENT_IMPLEMENTATION=1"
608 export_header = "content/common/content_export.h" 625 export_header = "content/common/content_export.h"
609 } 626 }
OLDNEW
« no previous file with comments | « content/browser/zygote_host/zygote_communication_linux.cc ('k') | content/common/media/cdm_host_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698