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

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

Issue 2828793003: GN: Tighten up test target visibility + refactorings (Closed)
Patch Set: Disable Win compile warning Created 3 years, 8 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
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("../webrtc.gni") 9 import("../webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 "../modules/rtp_rtcp", 330 "../modules/rtp_rtcp",
331 "../modules/video_capture", 331 "../modules/video_capture",
332 "../system_wrappers", 332 "../system_wrappers",
333 "//testing/gmock", 333 "//testing/gmock",
334 "//testing/gtest", 334 "//testing/gtest",
335 "//third_party/gflags", 335 "//third_party/gflags",
336 ] 336 ]
337 } 337 }
338 rtc_source_set("fileutils_unittests") { 338 rtc_source_set("fileutils_unittests") {
339 testonly = true 339 testonly = true
340 visibility = [ ":*" ] # Only targets in this file can depend on this.
340 sources = [ 341 sources = [
341 "testsupport/fileutils_unittest.cc", 342 "testsupport/fileutils_unittest.cc",
342 ] 343 ]
343 deps = [ 344 deps = [
344 ":fileutils", 345 ":fileutils",
345 ":test_support", 346 ":test_support",
346 "//testing/gmock", 347 "//testing/gmock",
347 "//testing/gtest", 348 "//testing/gtest",
348 ] 349 ]
349 } 350 }
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 "mock_audio_decoder.h", 547 "mock_audio_decoder.h",
547 "mock_audio_decoder_factory.h", 548 "mock_audio_decoder_factory.h",
548 ] 549 ]
549 deps = [ 550 deps = [
550 ":test_support", 551 ":test_support",
551 "../api/audio_codecs:audio_codecs_api", 552 "../api/audio_codecs:audio_codecs_api",
552 "../api/audio_codecs:builtin_audio_decoder_factory", 553 "../api/audio_codecs:builtin_audio_decoder_factory",
553 "../base:rtc_base_approved", 554 "../base:rtc_base_approved",
554 ] 555 ]
555 } 556 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698