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

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: 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "cdm/aes_decryptor.cc", 82 "cdm/aes_decryptor.cc",
83 "cdm/aes_decryptor.h", 83 "cdm/aes_decryptor.h",
84 "cdm/cdm_adapter.cc", 84 "cdm/cdm_adapter.cc",
85 "cdm/cdm_adapter.h", 85 "cdm/cdm_adapter.h",
86 "cdm/cdm_allocator.cc", 86 "cdm/cdm_allocator.cc",
87 "cdm/cdm_allocator.h", 87 "cdm/cdm_allocator.h",
88 "cdm/cdm_file_io.cc", 88 "cdm/cdm_file_io.cc",
89 "cdm/cdm_file_io.h", 89 "cdm/cdm_file_io.h",
90 "cdm/cdm_helpers.cc", 90 "cdm/cdm_helpers.cc",
91 "cdm/cdm_helpers.h", 91 "cdm/cdm_helpers.h",
92 "cdm/cdm_paths.cc",
ddorwin 2016/05/19 00:04:26 Might be worth making this its own component if we
xhwang 2016/05/20 00:22:35 Done.
93 "cdm/cdm_paths.h",
92 "cdm/cdm_wrapper.h", 94 "cdm/cdm_wrapper.h",
93 "cdm/default_cdm_factory.cc", 95 "cdm/default_cdm_factory.cc",
94 "cdm/default_cdm_factory.h", 96 "cdm/default_cdm_factory.h",
95 "cdm/json_web_key.cc", 97 "cdm/json_web_key.cc",
96 "cdm/json_web_key.h", 98 "cdm/json_web_key.h",
97 "cdm/player_tracker_impl.cc", 99 "cdm/player_tracker_impl.cc",
98 "cdm/player_tracker_impl.h", 100 "cdm/player_tracker_impl.h",
99 "cdm/supported_cdm_versions.cc", 101 "cdm/supported_cdm_versions.cc",
100 "cdm/supported_cdm_versions.h", 102 "cdm/supported_cdm_versions.h",
101 "filters/audio_clock.cc", 103 "filters/audio_clock.cc",
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 sources = [ 858 sources = [
857 "filters/vpx_video_decoder_fuzzertest.cc", 859 "filters/vpx_video_decoder_fuzzertest.cc",
858 ] 860 ]
859 deps = [ 861 deps = [
860 ":media", 862 ":media",
861 "//base", 863 "//base",
862 ] 864 ]
863 libfuzzer_options = [ "max_len = 400000" ] 865 libfuzzer_options = [ "max_len = 400000" ]
864 seed_corpus = "//media/test/data" 866 seed_corpus = "//media/test/data"
865 } 867 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698