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

Side by Side Diff: webrtc/rtc_tools/network_tester/BUILD.gn

Issue 2974863003: Use relative paths in GN files. (Closed)
Patch Set: Created 3 years, 5 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_tools/BUILD.gn ('k') | webrtc/sdk/android/BUILD.gn » ('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) 2017 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2017 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("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "../../p2p", 47 "../../p2p",
48 ] 48 ]
49 49
50 if (!build_with_chromium && is_clang) { 50 if (!build_with_chromium && is_clang) {
51 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 51 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
52 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 52 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
53 } 53 }
54 } 54 }
55 55
56 network_tester_unittests_resources = [ 56 network_tester_unittests_resources = [
57 "//resources/network_tester/client_config.dat", 57 "../../../resources/network_tester/client_config.dat",
58 "//resources/network_tester/server_config.dat", 58 "../../../resources/network_tester/server_config.dat",
59 ] 59 ]
60 60
61 if (is_ios) { 61 if (is_ios) {
62 bundle_data("network_tester_unittests_bundle_data") { 62 bundle_data("network_tester_unittests_bundle_data") {
63 testonly = true 63 testonly = true
64 sources = network_tester_unittests_resources 64 sources = network_tester_unittests_resources
65 outputs = [ 65 outputs = [
66 "{{bundle_resources_dir}}/{{source_file_part}}", 66 "{{bundle_resources_dir}}/{{source_file_part}}",
67 ] 67 ]
68 } 68 }
69 } 69 }
70 70
71 rtc_source_set("network_tester_unittests") { 71 rtc_source_set("network_tester_unittests") {
72 testonly = true 72 testonly = true
73 73
74 # Skip restricting visibility on mobile platforms since the tests on those 74 # Skip restricting visibility on mobile platforms since the tests on those
75 # gets additional generated targets which would require many lines here to 75 # gets additional generated targets which would require many lines here to
76 # cover (which would be confusing to read and hard to maintain). 76 # cover (which would be confusing to read and hard to maintain).
77 if (!is_android && !is_ios) { 77 if (!is_android && !is_ios) {
78 visibility = [ "//webrtc/rtc_tools:tools_unittests" ] 78 visibility = [ "..:tools_unittests" ]
79 } 79 }
80 sources = [ 80 sources = [
81 "network_tester_unittest.cc", 81 "network_tester_unittest.cc",
82 ] 82 ]
83 83
84 deps = [ 84 deps = [
85 ":network_tester", 85 ":network_tester",
86 "../../base:rtc_base_tests_utils",
87 "../../test:test_support",
86 "//testing/gtest", 88 "//testing/gtest",
87 "//webrtc/base:rtc_base_tests_utils",
88 "//webrtc/test:test_support",
89 ] 89 ]
90 90
91 if (is_ios) { 91 if (is_ios) {
92 deps += [ ":network_tester_unittests_bundle_data" ] 92 deps += [ ":network_tester_unittests_bundle_data" ]
93 } 93 }
94 94
95 defines = [ 95 defines = [
96 "GTEST_RELATIVE_PATH", 96 "GTEST_RELATIVE_PATH",
97 "WEBRTC_NETWORK_TESTER_TEST_ENABLED", 97 "WEBRTC_NETWORK_TESTER_TEST_ENABLED",
98 ] 98 ]
(...skipping 24 matching lines...) Expand all
123 123
124 if (is_android) { 124 if (is_android) {
125 android_apk("NetworkTesterMobile") { 125 android_apk("NetworkTesterMobile") {
126 testonly = true 126 testonly = true
127 apk_name = "NetworkTesterMobile" 127 apk_name = "NetworkTesterMobile"
128 android_manifest = "androidapp/AndroidManifest.xml" 128 android_manifest = "androidapp/AndroidManifest.xml"
129 129
130 deps = [ 130 deps = [
131 ":NetworkTesterMobile_javalib", 131 ":NetworkTesterMobile_javalib",
132 ":NetworkTesterMobile_resources", 132 ":NetworkTesterMobile_resources",
133 "../../rtc_base:base_java",
133 "//base:base_java", 134 "//base:base_java",
134 "//webrtc/rtc_base:base_java",
135 ] 135 ]
136 136
137 shared_libraries = [ "//webrtc/rtc_tools/network_tester:network_tester_so" ] 137 shared_libraries = [ "../../rtc_tools/network_tester:network_tester_so" ]
138 } 138 }
139 139
140 android_library("NetworkTesterMobile_javalib") { 140 android_library("NetworkTesterMobile_javalib") {
141 testonly = true 141 testonly = true
142 android_manifest = "androidapp/AndroidManifest.xml" 142 android_manifest = "androidapp/AndroidManifest.xml"
143 143
144 java_files = [ 144 java_files = [
145 "androidapp/src/com/google/media/networktester/MainActivity.java", 145 "androidapp/src/com/google/media/networktester/MainActivity.java",
146 "androidapp/src/com/google/media/networktester/NetworkTester.java", 146 "androidapp/src/com/google/media/networktester/NetworkTester.java",
147 ] 147 ]
148 148
149 deps = [ 149 deps = [
150 ":NetworkTesterMobile_resources", 150 ":NetworkTesterMobile_resources",
151 "//webrtc/rtc_base:base_java", 151 "../../rtc_base:base_java",
152 ] 152 ]
153 } 153 }
154 154
155 android_resources("NetworkTesterMobile_resources") { 155 android_resources("NetworkTesterMobile_resources") {
156 testonly = true 156 testonly = true
157 resource_dirs = [ "androidapp/res" ] 157 resource_dirs = [ "androidapp/res" ]
158 custom_package = "com.google.media.networktester" 158 custom_package = "com.google.media.networktester"
159 } 159 }
160 160
161 rtc_shared_library("network_tester_so") { 161 rtc_shared_library("network_tester_so") {
162 sources = [ 162 sources = [
163 "jni.cpp", 163 "jni.cpp",
164 ] 164 ]
165 165
166 deps = [ 166 deps = [
167 ":network_tester", 167 ":network_tester",
168 "../../system_wrappers:field_trial_default", 168 "../../system_wrappers:field_trial_default",
169 ] 169 ]
170 170
171 suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ] 171 suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ]
172 configs += [ "//build/config/android:hide_all_but_jni" ] 172 configs += [ "//build/config/android:hide_all_but_jni" ]
173 173
174 output_extension = "so" 174 output_extension = "so"
175 } 175 }
176 } 176 }
OLDNEW
« no previous file with comments | « webrtc/rtc_tools/BUILD.gn ('k') | webrtc/sdk/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698