Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Side by Side Diff: webrtc/BUILD.gn

Issue 2041233006: GN: Add modules_unittests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Correct path to base.gyp Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/build/webrtc.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 configs += [ ":common_config" ] 247 configs += [ ":common_config" ]
248 public_configs = [ ":common_inherited_config" ] 248 public_configs = [ ":common_inherited_config" ]
249 249
250 deps = [ 250 deps = [
251 ":webrtc_common", 251 ":webrtc_common",
252 "audio", 252 "audio",
253 "base:rtc_base", 253 "base:rtc_base",
254 "call", 254 "call",
255 "common_audio", 255 "common_audio",
256 "common_video", 256 "common_video",
257 "modules/audio_coding", 257 "modules",
258 "modules/audio_conference_mixer",
259 "modules/audio_device",
260 "modules/audio_processing",
261 "modules/bitrate_controller",
262 "modules/desktop_capture",
263 "modules/media_file",
264 "modules/rtp_rtcp",
265 "modules/utility",
266 "modules/video_coding",
267 "modules/video_processing",
268 "system_wrappers", 258 "system_wrappers",
269 "tools", 259 "tools",
270 "video", 260 "video",
271 "voice_engine", 261 "voice_engine",
272 ] 262 ]
273 263
274 if (build_with_chromium) { 264 if (build_with_chromium) {
275 deps += [ "modules/video_capture" ] 265 deps += [ "modules/video_capture" ]
276 } else { 266 } else {
277 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256 is 267 # TODO(kjellander): Enable for Chromium as well when bugs.webrtc.org/4256 is
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 # TODO(tkchin): Cleanup this warning. 587 # TODO(tkchin): Cleanup this warning.
598 cflags = [ "-Wno-objc-property-no-attribute" ] 588 cflags = [ "-Wno-objc-property-no-attribute" ]
599 589
600 # |-ObjC| flag needed to make sure category method implementations 590 # |-ObjC| flag needed to make sure category method implementations
601 # are included: 591 # are included:
602 # https://developer.apple.com/library/mac/qa/qa1490/_index.html 592 # https://developer.apple.com/library/mac/qa/qa1490/_index.html
603 ldflags = [ "-ObjC" ] 593 ldflags = [ "-ObjC" ]
604 } 594 }
605 } 595 }
606 } 596 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/build/webrtc.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698