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

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2976363002: Decoupling rtc_base from apple specific code [without cyclic deps] (Closed)
Patch Set: fixing network_tester_server 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/modules/video_capture/BUILD.gn ('k') | webrtc/ortc/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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 10
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 "../../base:rtc_base_approved", 318 "../../base:rtc_base_approved",
319 "../../system_wrappers:field_trial_default", 319 "../../system_wrappers:field_trial_default",
320 "../../system_wrappers:metrics_default", 320 "../../system_wrappers:metrics_default",
321 "../../system_wrappers:system_wrappers", 321 "../../system_wrappers:system_wrappers",
322 "../../test:test_support", 322 "../../test:test_support",
323 "../../test:video_test_common", 323 "../../test:video_test_common",
324 "../../test:video_test_support", 324 "../../test:video_test_support",
325 "../video_capture", 325 "../video_capture",
326 "//third_party/gflags", 326 "//third_party/gflags",
327 ] 327 ]
328 if (is_ios) {
329 deps += [ "../../rtc_base:rtc_base_apple" ]
330 }
328 } # video_quality_measurement 331 } # video_quality_measurement
329 332
330 rtc_source_set("video_codecs_test_framework") { 333 rtc_source_set("video_codecs_test_framework") {
331 testonly = true 334 testonly = true
332 sources = [ 335 sources = [
333 "codecs/test/mock/mock_packet_manipulator.h", 336 "codecs/test/mock/mock_packet_manipulator.h",
334 "codecs/test/packet_manipulator.cc", 337 "codecs/test/packet_manipulator.cc",
335 "codecs/test/packet_manipulator.h", 338 "codecs/test/packet_manipulator.h",
336 "codecs/test/predictive_packet_manipulator.cc", 339 "codecs/test/predictive_packet_manipulator.cc",
337 "codecs/test/predictive_packet_manipulator.h", 340 "codecs/test/predictive_packet_manipulator.h",
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 "../../sdk/android:libjingle_peerconnection_java", 495 "../../sdk/android:libjingle_peerconnection_java",
493 "../../sdk/android:libjingle_peerconnection_jni", 496 "../../sdk/android:libjingle_peerconnection_jni",
494 "//base", 497 "//base",
495 "//testing/android/native_test:native_test_support", 498 "//testing/android/native_test:native_test_support",
496 ] 499 ]
497 500
498 shard_timeout = 900 501 shard_timeout = 900
499 } 502 }
500 503
501 if (is_ios || is_mac) { 504 if (is_ios || is_mac) {
502 deps += [ ":plot_videoprocessor_integrationtest_bundle_data" ] 505 deps += [
506 ":plot_videoprocessor_integrationtest_bundle_data",
507 "../../rtc_base:rtc_base_apple",
508 ]
503 } 509 }
504 510
505 # TODO(brandtr): Remove this define when the modules_tests target properly 511 # TODO(brandtr): Remove this define when the modules_tests target properly
506 # loads the Java classes mentioned above. 512 # loads the Java classes mentioned above.
507 defines = [ "WEBRTC_VIDEOPROCESSOR_INTEGRATIONTEST_HW_CODECS_ENABLED" ] 513 defines = [ "WEBRTC_VIDEOPROCESSOR_INTEGRATIONTEST_HW_CODECS_ENABLED" ]
508 514
509 if (!build_with_chromium && is_clang) { 515 if (!build_with_chromium && is_clang) {
510 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 516 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
511 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 517 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
512 } 518 }
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 } 605 }
600 606
601 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. 607 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning.
602 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 608 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
603 if (!build_with_chromium && is_clang) { 609 if (!build_with_chromium && is_clang) {
604 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 610 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
605 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 611 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
606 } 612 }
607 } 613 }
608 } 614 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_capture/BUILD.gn ('k') | webrtc/ortc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698