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 '../../crypto/crypto.gyp:crypto', | |
ddorwin
2014/09/13 03:27:07
Why?
gunsch
2014/09/15 21:43:38
Eager copy from downstream, removed for this CL.
| |
13 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h' , | |
ddorwin
2014/09/13 03:27:07
Do you have a modification to this .gyp?
gunsch
2014/09/15 21:43:38
No, why?
We're adding the dependency because it a
ddorwin
2014/09/15 22:50:53
This line copies the header file for the platform
gunsch
2014/09/16 16:58:00
It does not fail. It uses a default Linux implemen
| |
14 ], | |
15 'sources': [ | |
16 'base/key_systems_common.cc', | |
17 'base/key_systems_common.h', | |
18 ], | |
19 }, | |
20 { | |
8 'target_name': 'cma_base', | 21 'target_name': 'cma_base', |
9 'type': '<(component)', | 22 'type': '<(component)', |
10 'dependencies': [ | 23 'dependencies': [ |
11 '../../base/base.gyp:base', | 24 '../../base/base.gyp:base', |
12 '../../media/media.gyp:media', | 25 '../../media/media.gyp:media', |
13 ], | 26 ], |
14 'include_dirs': [ | 27 'include_dirs': [ |
15 '../..', | 28 '../..', |
16 ], | 29 ], |
17 'sources': [ | 30 'sources': [ |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
119 'cma/base/mock_frame_provider.h', | 132 'cma/base/mock_frame_provider.h', |
120 'cma/base/run_all_unittests.cc', | 133 'cma/base/run_all_unittests.cc', |
121 'cma/filters/demuxer_stream_adapter_unittest.cc', | 134 'cma/filters/demuxer_stream_adapter_unittest.cc', |
122 'cma/ipc/media_message_fifo_unittest.cc', | 135 'cma/ipc/media_message_fifo_unittest.cc', |
123 'cma/ipc/media_message_unittest.cc', | 136 'cma/ipc/media_message_unittest.cc', |
124 'cma/ipc_streamer/av_streamer_unittest.cc', | 137 'cma/ipc_streamer/av_streamer_unittest.cc', |
125 ], | 138 ], |
126 }, | 139 }, |
127 ], | 140 ], |
128 } | 141 } |
OLD | NEW |