OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': ['../build/common.gypi'], | 10 'includes': ['../build/common.gypi'], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'common_video', | 13 'target_name': 'common_video', |
14 'type': 'static_library', | 14 'type': 'static_library', |
15 'include_dirs': [ | 15 'include_dirs': [ |
16 '<(webrtc_root)/modules/interface/', | 16 '<(webrtc_root)/modules/interface/', |
17 'include', | 17 'include', |
18 'libyuv/include', | 18 'libyuv/include', |
19 ], | 19 ], |
20 'dependencies': [ | 20 'dependencies': [ |
21 '<(webrtc_root)/common.gyp:webrtc_common', | 21 '<(webrtc_root)/common.gyp:webrtc_common', |
| 22 '<(webrtc_root)/base/base.gyp:rtc_task_queue', |
22 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 23 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
23 ], | 24 ], |
24 'direct_dependent_settings': { | 25 'direct_dependent_settings': { |
25 'include_dirs': [ | 26 'include_dirs': [ |
26 'include', | 27 'include', |
27 'libyuv/include', | 28 'libyuv/include', |
28 ], | 29 ], |
29 }, | 30 }, |
30 'conditions': [ | 31 'conditions': [ |
31 ['build_libyuv==1', { | 32 ['build_libyuv==1', { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 'libyuv/include/webrtc_libyuv.h', | 74 'libyuv/include/webrtc_libyuv.h', |
74 'libyuv/scaler.cc', | 75 'libyuv/scaler.cc', |
75 'libyuv/webrtc_libyuv.cc', | 76 'libyuv/webrtc_libyuv.cc', |
76 'video_frame_buffer.cc', | 77 'video_frame_buffer.cc', |
77 'video_render_frames.cc', | 78 'video_render_frames.cc', |
78 'video_render_frames.h', | 79 'video_render_frames.h', |
79 ], | 80 ], |
80 }, | 81 }, |
81 ], # targets | 82 ], # targets |
82 } | 83 } |
OLD | NEW |