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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
| 8 'target_name': 'media_base', |
| 9 'type': '<(component)', |
| 10 'dependencies': [ |
| 11 '../../base/base.gyp:base', |
| 12 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h'
, |
| 13 ], |
| 14 'sources': [ |
| 15 'base/key_systems_common.cc', |
| 16 'base/key_systems_common.h', |
| 17 ], |
| 18 }, |
| 19 { |
8 'target_name': 'cma_base', | 20 'target_name': 'cma_base', |
9 'type': '<(component)', | 21 'type': '<(component)', |
10 'dependencies': [ | 22 'dependencies': [ |
11 '../../base/base.gyp:base', | 23 '../../base/base.gyp:base', |
12 '../../media/media.gyp:media', | 24 '../../media/media.gyp:media', |
13 ], | 25 ], |
14 'include_dirs': [ | 26 'include_dirs': [ |
15 '../..', | 27 '../..', |
16 ], | 28 ], |
17 'sources': [ | 29 'sources': [ |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'cma/base/mock_frame_provider.h', | 131 'cma/base/mock_frame_provider.h', |
120 'cma/base/run_all_unittests.cc', | 132 'cma/base/run_all_unittests.cc', |
121 'cma/filters/demuxer_stream_adapter_unittest.cc', | 133 'cma/filters/demuxer_stream_adapter_unittest.cc', |
122 'cma/ipc/media_message_fifo_unittest.cc', | 134 'cma/ipc/media_message_fifo_unittest.cc', |
123 'cma/ipc/media_message_unittest.cc', | 135 'cma/ipc/media_message_unittest.cc', |
124 'cma/ipc_streamer/av_streamer_unittest.cc', | 136 'cma/ipc_streamer/av_streamer_unittest.cc', |
125 ], | 137 ], |
126 }, | 138 }, |
127 ], | 139 ], |
128 } | 140 } |
OLD | NEW |