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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "--typename=MediaOzonePlatform", | 65 "--typename=MediaOzonePlatform", |
66 "--include=\"media/ozone/media_ozone_platform.h\"", | 66 "--include=\"media/ozone/media_ozone_platform.h\"", |
67 ] | 67 ] |
68 } | 68 } |
69 } | 69 } |
70 | 70 |
71 component("media") { | 71 component("media") { |
72 sources = [ | 72 sources = [ |
73 "cdm/aes_decryptor.cc", | 73 "cdm/aes_decryptor.cc", |
74 "cdm/aes_decryptor.h", | 74 "cdm/aes_decryptor.h", |
| 75 "cdm/default_cdm_factory.cc", |
| 76 "cdm/default_cdm_factory.h", |
75 "cdm/json_web_key.cc", | 77 "cdm/json_web_key.cc", |
76 "cdm/json_web_key.h", | 78 "cdm/json_web_key.h", |
77 "cdm/key_system_names.cc", | 79 "cdm/key_system_names.cc", |
78 "cdm/key_system_names.h", | 80 "cdm/key_system_names.h", |
79 "cdm/player_tracker_impl.cc", | 81 "cdm/player_tracker_impl.cc", |
80 "cdm/player_tracker_impl.h", | 82 "cdm/player_tracker_impl.h", |
81 "cdm/proxy_decryptor.cc", | 83 "cdm/proxy_decryptor.cc", |
82 "cdm/proxy_decyrptor.h", | 84 "cdm/proxy_decyrptor.h", |
83 "ffmpeg/ffmpeg_deleters.h", | 85 "ffmpeg/ffmpeg_deleters.h", |
84 "filters/audio_clock.cc", | 86 "filters/audio_clock.cc", |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 deps = [ | 750 deps = [ |
749 ":media", | 751 ":media", |
750 ":shared_memory_support", | 752 ":shared_memory_support", |
751 "//base", | 753 "//base", |
752 "//ui/gl", | 754 "//ui/gl", |
753 "//ui/gfx", | 755 "//ui/gfx", |
754 "//ui/gfx/geometry", | 756 "//ui/gfx/geometry", |
755 ] | 757 ] |
756 } | 758 } |
757 } | 759 } |
OLD | NEW |