| 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 import("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 } | 112 } |
| 113 | 113 |
| 114 if (is_ios) { | 114 if (is_ios) { |
| 115 rtc_source_set("test_support_objc") { | 115 rtc_source_set("test_support_objc") { |
| 116 testonly = true | 116 testonly = true |
| 117 visibility = [ ":test_support" ] | 117 visibility = [ ":test_support" ] |
| 118 sources = [ | 118 sources = [ |
| 119 "ios/test_support.h", | 119 "ios/test_support.h", |
| 120 "ios/test_support.mm", | 120 "ios/test_support.mm", |
| 121 ] | 121 ] |
| 122 deps = [ |
| 123 "../sdk:common_objc", |
| 124 ] |
| 122 } | 125 } |
| 123 } | 126 } |
| 124 | 127 |
| 125 rtc_source_set("test_support") { | 128 rtc_source_set("test_support") { |
| 126 testonly = true | 129 testonly = true |
| 127 | 130 |
| 128 sources = [ | 131 sources = [ |
| 129 "gmock.h", | 132 "gmock.h", |
| 130 "gtest.h", | 133 "gtest.h", |
| 131 "testsupport/packet_reader.cc", | 134 "testsupport/packet_reader.cc", |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 ] | 721 ] |
| 719 deps = [ | 722 deps = [ |
| 720 "../rtc_base:base_java", | 723 "../rtc_base:base_java", |
| 721 "//testing/android/native_test:native_test_java", | 724 "//testing/android/native_test:native_test_java", |
| 722 ] | 725 ] |
| 723 | 726 |
| 724 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 727 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
| 725 no_build_hooks = true | 728 no_build_hooks = true |
| 726 } | 729 } |
| 727 } | 730 } |
| OLD | NEW |