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 |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "windows/video_capture_ds.h", | 123 "windows/video_capture_ds.h", |
124 "windows/video_capture_factory_windows.cc", | 124 "windows/video_capture_factory_windows.cc", |
125 "windows/video_capture_mf.cc", | 125 "windows/video_capture_mf.cc", |
126 "windows/video_capture_mf.h", | 126 "windows/video_capture_mf.h", |
127 ] | 127 ] |
128 | 128 |
129 libs = [ "Strmiids.lib" ] | 129 libs = [ "Strmiids.lib" ] |
130 | 130 |
131 deps += [ "//third_party/winsdk_samples" ] | 131 deps += [ "//third_party/winsdk_samples" ] |
132 } | 132 } |
133 if (is_android) { | |
134 sources = [ | |
135 "android/device_info_android.cc", | |
136 "android/device_info_android.h", | |
137 "android/video_capture_android.cc", | |
138 "android/video_capture_android.h", | |
139 ] | |
140 | |
141 if (rtc_build_json) { | |
142 deps += [ "//third_party/jsoncpp" ] | |
143 } | |
144 if (rtc_build_icu) { | |
145 deps += [ "//third_party/icu:icuuc" ] | |
146 } | |
147 } | |
148 if (is_ios) { | 133 if (is_ios) { |
149 sources = [ | 134 sources = [ |
150 "ios/device_info_ios.h", | 135 "ios/device_info_ios.h", |
151 "ios/device_info_ios.mm", | 136 "ios/device_info_ios.mm", |
152 "ios/device_info_ios_objc.h", | 137 "ios/device_info_ios_objc.h", |
153 "ios/device_info_ios_objc.mm", | 138 "ios/device_info_ios_objc.mm", |
154 "ios/rtc_video_capture_ios_objc.h", | 139 "ios/rtc_video_capture_ios_objc.h", |
155 "ios/rtc_video_capture_ios_objc.mm", | 140 "ios/rtc_video_capture_ios_objc.mm", |
156 "ios/video_capture_ios.h", | 141 "ios/video_capture_ios.h", |
157 "ios/video_capture_ios.mm", | 142 "ios/video_capture_ios.mm", |
(...skipping 14 matching lines...) Expand all Loading... |
172 configs += [ "../..:common_config" ] | 157 configs += [ "../..:common_config" ] |
173 public_configs = [ "../..:common_inherited_config" ] | 158 public_configs = [ "../..:common_inherited_config" ] |
174 | 159 |
175 if (is_clang) { | 160 if (is_clang) { |
176 # Suppress warnings from Chrome's Clang plugins. | 161 # Suppress warnings from Chrome's Clang plugins. |
177 # 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. |
178 configs -= [ "//build/config/clang:find_bad_constructs" ] | 163 configs -= [ "//build/config/clang:find_bad_constructs" ] |
179 } | 164 } |
180 } | 165 } |
181 } | 166 } |
OLD | NEW |