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

Side by Side Diff: media/BUILD.gn

Issue 1921823003: media: Move key_system_names to media/base/ (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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_wrapper.h", 92 "cdm/cdm_wrapper.h",
93 "cdm/default_cdm_factory.cc", 93 "cdm/default_cdm_factory.cc",
94 "cdm/default_cdm_factory.h", 94 "cdm/default_cdm_factory.h",
95 "cdm/json_web_key.cc", 95 "cdm/json_web_key.cc",
96 "cdm/json_web_key.h", 96 "cdm/json_web_key.h",
97 "cdm/key_system_names.cc",
98 "cdm/key_system_names.h",
99 "cdm/player_tracker_impl.cc", 97 "cdm/player_tracker_impl.cc",
100 "cdm/player_tracker_impl.h", 98 "cdm/player_tracker_impl.h",
101 "cdm/supported_cdm_versions.cc", 99 "cdm/supported_cdm_versions.cc",
102 "cdm/supported_cdm_versions.h", 100 "cdm/supported_cdm_versions.h",
103 "ffmpeg/ffmpeg_deleters.h", 101 "ffmpeg/ffmpeg_deleters.h",
104 "filters/audio_clock.cc", 102 "filters/audio_clock.cc",
105 "filters/audio_clock.h", 103 "filters/audio_clock.h",
106 "filters/audio_renderer_algorithm.cc", 104 "filters/audio_renderer_algorithm.cc",
107 "filters/audio_renderer_algorithm.h", 105 "filters/audio_renderer_algorithm.h",
108 "filters/chunk_demuxer.cc", 106 "filters/chunk_demuxer.cc",
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 fuzzer_test("media_vp9_parser_fuzzer") { 836 fuzzer_test("media_vp9_parser_fuzzer") {
839 sources = [ 837 sources = [
840 "filters/vp9_parser_fuzzertest.cc", 838 "filters/vp9_parser_fuzzertest.cc",
841 ] 839 ]
842 deps = [ 840 deps = [
843 ":media", 841 ":media",
844 "//base", 842 "//base",
845 ] 843 ]
846 libfuzzer_options = [ "max_len = 400000" ] 844 libfuzzer_options = [ "max_len = 400000" ]
847 } 845 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698