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

Side by Side Diff: media/BUILD.gn

Issue 1989893004: media: Use platform specific folders for CDMs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: specify both paths in chrome.release Created 4 years, 7 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/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 "//third_party/libyuv", 467 "//third_party/libyuv",
468 "//third_party/opus", 468 "//third_party/opus",
469 "//ui/events:events_base", 469 "//ui/events:events_base",
470 "//ui/gfx", 470 "//ui/gfx",
471 "//ui/gfx/geometry", 471 "//ui/gfx/geometry",
472 "//ui/gl:gl", 472 "//ui/gl:gl",
473 "//url", 473 "//url",
474 ] 474 ]
475 } 475 }
476 476
477 source_set("cdm_paths") {
478 sources = [
479 "cdm/cdm_paths.cc",
480 "cdm/cdm_paths.h",
481 ]
482 deps = [
483 "//base",
484 ]
485 }
486
477 # Minimal media component for media/cast on iOS. 487 # Minimal media component for media/cast on iOS.
478 if (is_ios) { 488 if (is_ios) {
479 component("media_for_cast_ios") { 489 component("media_for_cast_ios") {
480 configs += [ 490 configs += [
481 ":media_config", 491 ":media_config",
482 ":media_implementation", 492 ":media_implementation",
483 ] 493 ]
484 all_dependent_configs = [ ":media_dependent_config" ] 494 all_dependent_configs = [ ":media_dependent_config" ]
485 include_dirs = [ "." ] 495 include_dirs = [ "." ]
486 libs = [ "CoreVideo.framework" ] 496 libs = [ "CoreVideo.framework" ]
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 data = [ 569 data = [
560 "test/data/", 570 "test/data/",
561 ] 571 ]
562 572
563 # TODO(wolenetz): Fix size_t to int truncation in win64. 573 # TODO(wolenetz): Fix size_t to int truncation in win64.
564 # See http://crbug.com/171009 574 # See http://crbug.com/171009
565 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 575 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
566 576
567 deps = [ 577 deps = [
568 ":cdm_api", 578 ":cdm_api",
579 ":cdm_paths",
569 ":media", 580 ":media",
570 ":test_support", 581 ":test_support",
571 "//base/test:test_support", 582 "//base/test:test_support",
572 "//gpu:test_support", 583 "//gpu:test_support",
573 "//gpu/command_buffer/common", 584 "//gpu/command_buffer/common",
574 "//media/audio:test_support", 585 "//media/audio:test_support",
575 "//media/audio:unittests", 586 "//media/audio:unittests",
576 "//media/base:test_support", 587 "//media/base:test_support",
577 "//media/base:unittests", 588 "//media/base:unittests",
578 "//media/capture:unittests", 589 "//media/capture:unittests",
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 sources = [ 867 sources = [
857 "filters/vpx_video_decoder_fuzzertest.cc", 868 "filters/vpx_video_decoder_fuzzertest.cc",
858 ] 869 ]
859 deps = [ 870 deps = [
860 ":media", 871 ":media",
861 "//base", 872 "//base",
862 ] 873 ]
863 libfuzzer_options = [ "max_len = 400000" ] 874 libfuzzer_options = [ "max_len = 400000" ]
864 seed_corpus = "//media/test/data" 875 seed_corpus = "//media/test/data"
865 } 876 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698