Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 67 } | 67 } |
| 68 if (media_use_ffmpeg && is_android) { | 68 if (media_use_ffmpeg && is_android) { |
| 69 defines += [ "DISABLE_FFMPEG_VIDEO_DECODERS" ] | 69 defines += [ "DISABLE_FFMPEG_VIDEO_DECODERS" ] |
| 70 } | 70 } |
| 71 } | 71 } |
| 72 | 72 |
| 73 component("media") { | 73 component("media") { |
| 74 sources = [ | 74 sources = [ |
| 75 "cdm/aes_decryptor.cc", | 75 "cdm/aes_decryptor.cc", |
| 76 "cdm/aes_decryptor.h", | 76 "cdm/aes_decryptor.h", |
| 77 "cdm/api/content_decryption_module.h", | |
|
xhwang
2016/04/12 21:16:03
Can we have this one in a separate source_set?
jrummell
2016/04/13 22:59:13
Done.
| |
| 77 "cdm/cdm_adapter.cc", | 78 "cdm/cdm_adapter.cc", |
| 78 "cdm/cdm_adapter.h", | 79 "cdm/cdm_adapter.h", |
| 79 "cdm/cdm_allocator.cc", | 80 "cdm/cdm_allocator.cc", |
| 80 "cdm/cdm_allocator.h", | 81 "cdm/cdm_allocator.h", |
| 81 "cdm/cdm_helpers.cc", | 82 "cdm/cdm_helpers.cc", |
| 82 "cdm/cdm_helpers.h", | 83 "cdm/cdm_helpers.h", |
| 84 "cdm/cdm_wrapper.h", | |
| 83 "cdm/default_cdm_factory.cc", | 85 "cdm/default_cdm_factory.cc", |
| 84 "cdm/default_cdm_factory.h", | 86 "cdm/default_cdm_factory.h", |
| 85 "cdm/json_web_key.cc", | 87 "cdm/json_web_key.cc", |
| 86 "cdm/json_web_key.h", | 88 "cdm/json_web_key.h", |
| 87 "cdm/key_system_names.cc", | 89 "cdm/key_system_names.cc", |
| 88 "cdm/key_system_names.h", | 90 "cdm/key_system_names.h", |
| 89 "cdm/player_tracker_impl.cc", | 91 "cdm/player_tracker_impl.cc", |
| 90 "cdm/player_tracker_impl.h", | 92 "cdm/player_tracker_impl.h", |
| 91 "cdm/supported_cdm_versions.cc", | 93 "cdm/supported_cdm_versions.cc", |
| 92 "cdm/supported_cdm_versions.h", | 94 "cdm/supported_cdm_versions.h", |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 825 fuzzer_test("media_vp9_parser_fuzzer") { | 827 fuzzer_test("media_vp9_parser_fuzzer") { |
| 826 sources = [ | 828 sources = [ |
| 827 "filters/vp9_parser_fuzzertest.cc", | 829 "filters/vp9_parser_fuzzertest.cc", |
| 828 ] | 830 ] |
| 829 deps = [ | 831 deps = [ |
| 830 ":media", | 832 ":media", |
| 831 "//base", | 833 "//base", |
| 832 ] | 834 ] |
| 833 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" | 835 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" |
| 834 } | 836 } |
| OLD | NEW |