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

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

Issue 2976293002: Remove remains of webrtc/base (Closed)
Patch Set: Add README.md 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_base/sigslottester.h.pump ('k') | webrtc/rtc_tools/network_tester/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) 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("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 30 matching lines...) Expand all
41 } 41 }
42 } 42 }
43 } 43 }
44 44
45 rtc_static_library("command_line_parser") { 45 rtc_static_library("command_line_parser") {
46 sources = [ 46 sources = [
47 "simple_command_line_parser.cc", 47 "simple_command_line_parser.cc",
48 "simple_command_line_parser.h", 48 "simple_command_line_parser.h",
49 ] 49 ]
50 deps = [ 50 deps = [
51 "../base:gtest_prod", 51 "../rtc_base:gtest_prod",
52 "../base:rtc_base_approved", 52 "../rtc_base:rtc_base_approved",
53 ] 53 ]
54 } 54 }
55 55
56 rtc_static_library("video_quality_analysis") { 56 rtc_static_library("video_quality_analysis") {
57 sources = [ 57 sources = [
58 "frame_analyzer/video_quality_analysis.cc", 58 "frame_analyzer/video_quality_analysis.cc",
59 "frame_analyzer/video_quality_analysis.h", 59 "frame_analyzer/video_quality_analysis.h",
60 ] 60 ]
61 61
62 deps = [ 62 deps = [
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "event_log_visualizer/plot_python.cc", 199 "event_log_visualizer/plot_python.cc",
200 "event_log_visualizer/plot_python.h", 200 "event_log_visualizer/plot_python.h",
201 ] 201 ]
202 if (!build_with_chromium && is_clang) { 202 if (!build_with_chromium && is_clang) {
203 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 203 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
204 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 204 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
205 } 205 }
206 defines = [ "ENABLE_RTC_EVENT_LOG" ] 206 defines = [ "ENABLE_RTC_EVENT_LOG" ]
207 deps = [ 207 deps = [
208 "..:video_stream_api", 208 "..:video_stream_api",
209 "../base:rtc_base_approved",
210 "../call:call_interfaces", 209 "../call:call_interfaces",
211 "../logging:rtc_event_log_impl", 210 "../logging:rtc_event_log_impl",
212 "../logging:rtc_event_log_parser", 211 "../logging:rtc_event_log_parser",
213 "../modules:module_api", 212 "../modules:module_api",
214 "../modules/audio_coding:ana_debug_dump_proto", 213 "../modules/audio_coding:ana_debug_dump_proto",
215 "../modules/audio_coding:neteq_tools", 214 "../modules/audio_coding:neteq_tools",
215 "../rtc_base:rtc_base_approved",
216 216
217 # TODO(kwiberg): Remove this dependency. 217 # TODO(kwiberg): Remove this dependency.
218 "../api/audio_codecs:audio_codecs_api", 218 "../api/audio_codecs:audio_codecs_api",
219 "../modules/congestion_controller", 219 "../modules/congestion_controller",
220 "../modules/rtp_rtcp", 220 "../modules/rtp_rtcp",
221 "../system_wrappers:system_wrappers_default", 221 "../system_wrappers:system_wrappers_default",
222 "//build/config:exe_and_shlib_deps", 222 "//build/config:exe_and_shlib_deps",
223 ] 223 ]
224 public_deps = [ 224 public_deps = [
225 ":chart_proto", 225 ":chart_proto",
(...skipping 12 matching lines...) Expand all
238 ] 238 ]
239 239
240 if (!build_with_chromium && is_clang) { 240 if (!build_with_chromium && is_clang) {
241 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 241 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
242 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 242 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
243 } 243 }
244 244
245 defines = [ "ENABLE_RTC_EVENT_LOG" ] 245 defines = [ "ENABLE_RTC_EVENT_LOG" ]
246 deps = [ 246 deps = [
247 ":event_log_visualizer_utils", 247 ":event_log_visualizer_utils",
248 "../base:rtc_base_approved", 248 "../rtc_base:rtc_base_approved",
249 "../test:field_trial", 249 "../test:field_trial",
250 "../test:test_support", 250 "../test:test_support",
251 ] 251 ]
252 } 252 }
253 } 253 }
254 254
255 rtc_executable("activity_metric") { 255 rtc_executable("activity_metric") {
256 testonly = true 256 testonly = true
257 sources = [ 257 sources = [
258 "agc/activity_metric.cc", 258 "agc/activity_metric.cc",
259 ] 259 ]
260 260
261 if (!build_with_chromium && is_clang) { 261 if (!build_with_chromium && is_clang) {
262 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 262 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
264 } 264 }
265 265
266 deps = [ 266 deps = [
267 "../base:rtc_base_approved",
268 "../modules:module_api", 267 "../modules:module_api",
269 "../modules/audio_processing", 268 "../modules/audio_processing",
269 "../rtc_base:rtc_base_approved",
270 "../system_wrappers:metrics_default", 270 "../system_wrappers:metrics_default",
271 "../test:test_support", 271 "../test:test_support",
272 "//build/win:default_exe_manifest", 272 "//build/win:default_exe_manifest",
273 "//testing/gtest", 273 "//testing/gtest",
274 ] 274 ]
275 } 275 }
276 276
277 tools_unittests_resources = [ 277 tools_unittests_resources = [
278 "../../resources/foreman_cif.yuv", 278 "../../resources/foreman_cif.yuv",
279 "../../resources/reference_less_video_test_file.y4m", 279 "../../resources/reference_less_video_test_file.y4m",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 ] 341 ]
342 outputs = [ 342 outputs = [
343 "$root_build_dir/{{source_file_part}}", 343 "$root_build_dir/{{source_file_part}}",
344 ] 344 ]
345 deps = [ 345 deps = [
346 "../logging:rtc_event_log_proto", 346 "../logging:rtc_event_log_proto",
347 ] 347 ]
348 } 348 }
349 } 349 }
350 } 350 }
OLDNEW
« no previous file with comments | « webrtc/rtc_base/sigslottester.h.pump ('k') | webrtc/rtc_tools/network_tester/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698