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

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

Issue 2233903002: GN: Add dependency libjingle_peerconnection_java to modules_unittests. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | no next file » | 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 "video_coding:video_codecs_test_framework", 472 "video_coding:video_codecs_test_framework",
473 "video_coding:webrtc_vp8", 473 "video_coding:webrtc_vp8",
474 "video_coding:webrtc_vp9", 474 "video_coding:webrtc_vp9",
475 "video_processing", 475 "video_processing",
476 "//testing/gmock", 476 "//testing/gmock",
477 "//testing/gtest", 477 "//testing/gtest",
478 "//third_party/gflags", 478 "//third_party/gflags",
479 ] 479 ]
480 480
481 if (is_android) { 481 if (is_android) {
482 deps += [ "//testing/android/native_test:native_test_support" ] 482 deps += [
483 "//testing/android/native_test:native_test_support",
484 "//webrtc/api:libjingle_peerconnection_java",
485 ]
483 486
484 # Need to disable error due to the line in 487 # Need to disable error due to the line in
485 # base/android/jni_android.h triggering it: 488 # base/android/jni_android.h triggering it:
486 # const BASE_EXPORT jobject GetApplicationContext() 489 # const BASE_EXPORT jobject GetApplicationContext()
487 # error: type qualifiers ignored on function return type 490 # error: type qualifiers ignored on function return type
488 cflags = [ "-Wno-ignored-qualifiers" ] 491 cflags = [ "-Wno-ignored-qualifiers" ]
489 sources += [ 492 sources += [
490 "audio_device/android/audio_device_unittest.cc", 493 "audio_device/android/audio_device_unittest.cc",
491 "audio_device/android/audio_manager_unittest.cc", 494 "audio_device/android/audio_manager_unittest.cc",
492 "audio_device/android/ensure_initialized.cc", 495 "audio_device/android/ensure_initialized.cc",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 "audio_device/ios/objc/RTCAudioSessionTest.mm", 613 "audio_device/ios/objc/RTCAudioSessionTest.mm",
611 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 614 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
612 ] 615 ]
613 616
614 ldflags = [ "-ObjC" ] 617 ldflags = [ "-ObjC" ]
615 618
616 # TODO(kjellander): Mac bundle files. 619 # TODO(kjellander): Mac bundle files.
617 } 620 }
618 } 621 }
619 } 622 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698