| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 | 10 |
| 11 # Note this target is missing an implementation for the video capture. | 11 # Note this target is missing an implementation for the video capture. |
| 12 # Targets must link with either 'video_capture' or | 12 # Targets must link with either 'video_capture' or |
| 13 # 'video_capture_internal_impl' depending on whether they want to | 13 # 'video_capture_internal_impl' depending on whether they want to |
| 14 # use the internal capturer. | 14 # use the internal capturer. |
| 15 source_set("video_capture_module") { | 15 source_set("video_capture_module") { |
| 16 sources = [ | 16 sources = [ |
| 17 "device_info_impl.cc", | 17 "device_info_impl.cc", |
| 18 "device_info_impl.h", | 18 "device_info_impl.h", |
| 19 "include/video_capture.h", | 19 "video_capture.h", |
| 20 "include/video_capture_defines.h", | |
| 21 "include/video_capture_factory.h", | |
| 22 "video_capture_config.h", | 20 "video_capture_config.h", |
| 21 "video_capture_defines.h", |
| 23 "video_capture_delay.h", | 22 "video_capture_delay.h", |
| 23 "video_capture_factory.h", |
| 24 "video_capture_factory.cc", | 24 "video_capture_factory.cc", |
| 25 "video_capture_impl.cc", | 25 "video_capture_impl.cc", |
| 26 "video_capture_impl.h", | 26 "video_capture_impl.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "../..:webrtc_common", | 30 "../..:webrtc_common", |
| 31 "../../common_video", | 31 "../../common_video", |
| 32 "../../system_wrappers", | 32 "../../system_wrappers", |
| 33 "../utility", | 33 "../utility", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 configs += [ "../..:common_config" ] | 157 configs += [ "../..:common_config" ] |
| 158 public_configs = [ "../..:common_inherited_config" ] | 158 public_configs = [ "../..:common_inherited_config" ] |
| 159 | 159 |
| 160 if (is_clang) { | 160 if (is_clang) { |
| 161 # Suppress warnings from Chrome's Clang plugins. | 161 # Suppress warnings from Chrome's Clang plugins. |
| 162 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 162 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 163 configs -= [ "//build/config/clang:find_bad_constructs" ] | 163 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 164 } | 164 } |
| 165 } | 165 } |
| 166 } | 166 } |
| OLD | NEW |