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

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

Issue 2547483003: Move /webrtc/api/android files to /webrtc/sdk/android (Closed)
Patch Set: Fixes Created 4 years 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
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 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 "//testing/gmock", 682 "//testing/gmock",
683 "//testing/gtest", 683 "//testing/gtest",
684 "//third_party/gflags", 684 "//third_party/gflags",
685 ] 685 ]
686 686
687 data = modules_unittests_resources 687 data = modules_unittests_resources
688 688
689 if (is_android) { 689 if (is_android) {
690 deps += [ 690 deps += [
691 "//testing/android/native_test:native_test_support", 691 "//testing/android/native_test:native_test_support",
692 "//webrtc/api:libjingle_peerconnection_java", 692 "//webrtc/sdk/android:libjingle_peerconnection_java",
693 ] 693 ]
694 694
695 # Need to disable error due to the line in 695 # Need to disable error due to the line in
696 # base/android/jni_android.h triggering it: 696 # base/android/jni_android.h triggering it:
697 # const BASE_EXPORT jobject GetApplicationContext() 697 # const BASE_EXPORT jobject GetApplicationContext()
698 # error: type qualifiers ignored on function return type 698 # error: type qualifiers ignored on function return type
699 cflags = [ "-Wno-ignored-qualifiers" ] 699 cflags = [ "-Wno-ignored-qualifiers" ]
700 sources += [ 700 sources += [
701 "audio_device/android/audio_device_unittest.cc", 701 "audio_device/android/audio_device_unittest.cc",
702 "audio_device/android/audio_manager_unittest.cc", 702 "audio_device/android/audio_manager_unittest.cc",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 "../test:test_common", 749 "../test:test_common",
750 "../test:test_main", 750 "../test:test_main",
751 "remote_bitrate_estimator:bwe_simulator_lib", 751 "remote_bitrate_estimator:bwe_simulator_lib",
752 "video_capture", 752 "video_capture",
753 "//testing/gmock", 753 "//testing/gmock",
754 "//testing/gtest", 754 "//testing/gtest",
755 "//third_party/gflags", 755 "//third_party/gflags",
756 ] 756 ]
757 } 757 }
758 } 758 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698