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

Side by Side Diff: webrtc/test/BUILD.gn

Issue 2426563003: Moved transport.h from webrtc/ to webrtc/api, created build target and updated dependencies. (Closed)
Patch Set: Remove mentions of GYP. Created 4 years, 1 month 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
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 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 323
324 if (!build_with_chromium && is_clang) { 324 if (!build_with_chromium && is_clang) {
325 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 325 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
326 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 326 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
327 } 327 }
328 328
329 deps = [ 329 deps = [
330 ":rtp_test_utils", 330 ":rtp_test_utils",
331 ":test_support", 331 ":test_support",
332 "..:webrtc_common", 332 "..:webrtc_common",
333 "../api:transport_api",
333 "../audio", 334 "../audio",
334 "../base:rtc_base_approved", 335 "../base:rtc_base_approved",
335 "../call", 336 "../call",
336 "../modules/audio_device:mock_audio_device", 337 "../modules/audio_device:mock_audio_device",
337 "../modules/audio_mixer:audio_mixer_impl", 338 "../modules/audio_mixer:audio_mixer_impl",
338 "../modules/audio_processing", 339 "../modules/audio_processing",
339 "../modules/media_file", 340 "../modules/media_file",
340 "../modules/video_capture:video_capture_module", 341 "../modules/video_capture:video_capture_module",
341 "../video", 342 "../video",
342 "//testing/gmock", 343 "//testing/gmock",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 410 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
410 } 411 }
411 412
412 deps = [ 413 deps = [
413 ":test_support", 414 ":test_support",
414 ":video_test_common", 415 ":video_test_common",
415 "../modules/media_file", 416 "../modules/media_file",
416 "//testing/gtest", 417 "//testing/gtest",
417 ] 418 ]
418 } 419 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698