| 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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
| 10 | 10 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 defines = [] | 249 defines = [] |
| 250 | 250 |
| 251 deps = [ | 251 deps = [ |
| 252 ":webrtc_common", | 252 ":webrtc_common", |
| 253 "audio", | 253 "audio", |
| 254 "base:rtc_base", | 254 "base:rtc_base", |
| 255 "call", | 255 "call", |
| 256 "common_audio", | 256 "common_audio", |
| 257 "common_video", | 257 "common_video", |
| 258 "modules", | 258 "modules", |
| 259 "stats", | |
| 260 "system_wrappers", | 259 "system_wrappers", |
| 261 "tools", | 260 "tools", |
| 262 "video", | 261 "video", |
| 263 "voice_engine", | 262 "voice_engine", |
| 264 ] | 263 ] |
| 265 | 264 |
| 266 if (build_with_chromium) { | 265 if (build_with_chromium) { |
| 267 deps += [ "modules/video_capture" ] | 266 deps += [ "modules/video_capture" ] |
| 268 } else { | 267 } else { |
| 269 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256 | 268 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256 |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 if (is_mac) { | 820 if (is_mac) { |
| 822 sources += [ "base/macsocketserver_unittest.cc" ] | 821 sources += [ "base/macsocketserver_unittest.cc" ] |
| 823 } | 822 } |
| 824 if (is_clang) { | 823 if (is_clang) { |
| 825 # Suppress warnings from the Chromium Clang plugin. | 824 # Suppress warnings from the Chromium Clang plugin. |
| 826 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 825 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 827 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 826 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 828 } | 827 } |
| 829 } | 828 } |
| 830 } | 829 } |
| OLD | NEW |