OLD | NEW |
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("//build/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 public_configs = [ ":rtc_base_tests_utils_exported_config" ] | 779 public_configs = [ ":rtc_base_tests_utils_exported_config" ] |
780 deps = [ | 780 deps = [ |
781 ":rtc_base", | 781 ":rtc_base", |
782 "../test:field_trial", | 782 "../test:field_trial", |
783 "../test:test_support", | 783 "../test:test_support", |
784 ] | 784 ] |
785 public_deps = [ | 785 public_deps = [ |
786 "//testing/gtest", | 786 "//testing/gtest", |
787 ] | 787 ] |
788 | 788 |
789 if (is_clang) { | 789 if (!build_with_chromium && is_clang) { |
790 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 790 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
791 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 791 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
792 } | 792 } |
793 } | 793 } |
794 } | 794 } |
795 | 795 |
796 if (is_android) { | 796 if (is_android) { |
797 android_library("base_java") { | 797 android_library("base_java") { |
798 java_files = [ | 798 java_files = [ |
799 "java/src/org/webrtc/Logging.java", | 799 "java/src/org/webrtc/Logging.java", |
800 "java/src/org/webrtc/Size.java", | 800 "java/src/org/webrtc/Size.java", |
801 "java/src/org/webrtc/ThreadUtils.java", | 801 "java/src/org/webrtc/ThreadUtils.java", |
802 ] | 802 ] |
803 | 803 |
804 deps = [ | 804 deps = [ |
805 "//base:base_java", | 805 "//base:base_java", |
806 ] | 806 ] |
807 } | 807 } |
808 } | 808 } |
OLD | NEW |