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

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

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: rebase Created 3 years, 3 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 | « webrtc/rtc_base/optional.h ('k') | webrtc/test/fake_audio_device.h » ('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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "rtp_file_writer.h", 82 "rtp_file_writer.h",
83 ] 83 ]
84 84
85 if (!build_with_chromium && is_clang) { 85 if (!build_with_chromium && is_clang) {
86 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 86 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
87 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 87 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
88 } 88 }
89 89
90 deps = [ 90 deps = [
91 "..:webrtc_common", 91 "..:webrtc_common",
92 "../api:array_view",
92 "../modules/rtp_rtcp", 93 "../modules/rtp_rtcp",
93 "../rtc_base:rtc_base_approved", 94 "../rtc_base:rtc_base_approved",
94 "//testing/gtest", 95 "//testing/gtest",
95 ] 96 ]
96 } 97 }
97 98
98 rtc_source_set("field_trial") { 99 rtc_source_set("field_trial") {
99 testonly = true 100 testonly = true
100 sources = [ 101 sources = [
101 "field_trial.cc", 102 "field_trial.cc",
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 sources = [ 482 sources = [
482 "fake_audio_device.cc", 483 "fake_audio_device.cc",
483 "fake_audio_device.h", 484 "fake_audio_device.h",
484 ] 485 ]
485 if (!build_with_chromium && is_clang) { 486 if (!build_with_chromium && is_clang) {
486 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 487 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
487 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 488 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
488 } 489 }
489 deps = [ 490 deps = [
490 "..:webrtc_common", 491 "..:webrtc_common",
492 "../api:array_view",
491 "../common_audio:common_audio", 493 "../common_audio:common_audio",
492 "../modules/audio_device:audio_device", 494 "../modules/audio_device:audio_device",
493 "../rtc_base:rtc_base_approved", 495 "../rtc_base:rtc_base_approved",
494 "../system_wrappers:system_wrappers", 496 "../system_wrappers:system_wrappers",
495 ] 497 ]
496 } 498 }
497 499
498 rtc_source_set("test_common") { 500 rtc_source_set("test_common") {
499 testonly = true 501 testonly = true
500 sources = [ 502 sources = [
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 "mock_audio_decoder.cc", 690 "mock_audio_decoder.cc",
689 "mock_audio_decoder.h", 691 "mock_audio_decoder.h",
690 "mock_audio_decoder_factory.h", 692 "mock_audio_decoder_factory.h",
691 "mock_audio_encoder.cc", 693 "mock_audio_encoder.cc",
692 "mock_audio_encoder.h", 694 "mock_audio_encoder.h",
693 "mock_audio_encoder_factory.h", 695 "mock_audio_encoder_factory.h",
694 ] 696 ]
695 697
696 deps = [ 698 deps = [
697 ":test_support", 699 ":test_support",
700 "../api:array_view",
698 "../api/audio_codecs:audio_codecs_api", 701 "../api/audio_codecs:audio_codecs_api",
699 "../api/audio_codecs:builtin_audio_decoder_factory", 702 "../api/audio_codecs:builtin_audio_decoder_factory",
700 "../rtc_base:rtc_base_approved", 703 "../rtc_base:rtc_base_approved",
701 "//testing/gmock", 704 "//testing/gmock",
702 ] 705 ]
703 } 706 }
704 707
705 if (!build_with_chromium && is_android) { 708 if (!build_with_chromium && is_android) {
706 android_library("native_test_java") { 709 android_library("native_test_java") {
707 testonly = true 710 testonly = true
708 java_files = [ 711 java_files = [
709 "android/org/webrtc/native_test/RTCNativeUnitTest.java", 712 "android/org/webrtc/native_test/RTCNativeUnitTest.java",
710 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", 713 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java",
711 ] 714 ]
712 deps = [ 715 deps = [
713 "../rtc_base:base_java", 716 "../rtc_base:base_java",
714 "//testing/android/native_test:native_test_java", 717 "//testing/android/native_test:native_test_java",
715 ] 718 ]
716 719
717 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 720 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148
718 no_build_hooks = true 721 no_build_hooks = true
719 } 722 }
720 } 723 }
OLDNEW
« no previous file with comments | « webrtc/rtc_base/optional.h ('k') | webrtc/test/fake_audio_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698