| OLD | NEW | 
|---|
| 1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2017 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 if (is_android) { | 10 if (is_android) { | 
| (...skipping 15 matching lines...) Expand all  Loading... | 
| 26     "rtptransportadapter.cc", | 26     "rtptransportadapter.cc", | 
| 27     "rtptransportadapter.h", | 27     "rtptransportadapter.h", | 
| 28     "rtptransportcontrolleradapter.cc", | 28     "rtptransportcontrolleradapter.cc", | 
| 29     "rtptransportcontrolleradapter.h", | 29     "rtptransportcontrolleradapter.h", | 
| 30   ] | 30   ] | 
| 31 | 31 | 
| 32   # TODO(deadbeef): Create a separate target for the common things ORTC and | 32   # TODO(deadbeef): Create a separate target for the common things ORTC and | 
| 33   # PeerConnection code shares, so that ortc can depend on that instead of | 33   # PeerConnection code shares, so that ortc can depend on that instead of | 
| 34   # libjingle_peerconnection. | 34   # libjingle_peerconnection. | 
| 35   deps = [ | 35   deps = [ | 
|  | 36     "../base:rtc_base", | 
|  | 37     "../base:rtc_base_approved", | 
|  | 38     "../call:call_interfaces", | 
|  | 39     "../logging:rtc_event_log_api", | 
|  | 40     "../media:rtc_media", | 
|  | 41     "../media:rtc_media_base", | 
|  | 42     "../modules/audio_coding:builtin_audio_decoder_factory", | 
|  | 43     "../p2p:rtc_p2p", | 
| 36     "../pc:libjingle_peerconnection", | 44     "../pc:libjingle_peerconnection", | 
|  | 45     "../pc:rtc_pc", | 
| 37   ] | 46   ] | 
| 38 | 47 | 
| 39   public_deps = [ | 48   public_deps = [ | 
| 40     "../api:ortc_api", | 49     "../api:ortc_api", | 
| 41   ] | 50   ] | 
| 42 | 51 | 
| 43   if (!build_with_chromium && is_clang) { | 52   if (!build_with_chromium && is_clang) { | 
| 44     # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 53     # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
| 45     suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 54     suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 46   } | 55   } | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 57       "ortcrtpsender_unittest.cc", | 66       "ortcrtpsender_unittest.cc", | 
| 58       "rtpparametersconversion_unittest.cc", | 67       "rtpparametersconversion_unittest.cc", | 
| 59       "rtptransport_unittest.cc", | 68       "rtptransport_unittest.cc", | 
| 60       "rtptransportcontroller_unittest.cc", | 69       "rtptransportcontroller_unittest.cc", | 
| 61       "testrtpparameters.cc", | 70       "testrtpparameters.cc", | 
| 62       "testrtpparameters.h", | 71       "testrtpparameters.h", | 
| 63     ] | 72     ] | 
| 64 | 73 | 
| 65     deps = [ | 74     deps = [ | 
| 66       ":ortc", | 75       ":ortc", | 
|  | 76       "../base:rtc_base", | 
|  | 77       "../base:rtc_base_approved", | 
|  | 78       "../base:rtc_base_tests_main", | 
| 67       "../base:rtc_base_tests_utils", | 79       "../base:rtc_base_tests_utils", | 
| 68       "../media:rtc_unittest_main", | 80       "../media:rtc_unittest_main", | 
|  | 81       "../p2p:rtc_p2p", | 
|  | 82       "../p2p:rtc_p2p_test_utils", | 
| 69       "../pc:pc_test_utils", | 83       "../pc:pc_test_utils", | 
| 70       "../system_wrappers:metrics_default", | 84       "../system_wrappers:metrics_default", | 
|  | 85       "../test:test_support", | 
| 71     ] | 86     ] | 
| 72 | 87 | 
| 73     if (!build_with_chromium && is_clang) { | 88     if (!build_with_chromium && is_clang) { | 
| 74       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 89       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
| 75       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 90       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 76     } | 91     } | 
| 77 | 92 | 
| 78     if (is_android) { | 93     if (is_android) { | 
| 79       deps += [ "//testing/android/native_test:native_test_support" ] | 94       deps += [ "//testing/android/native_test:native_test_support" ] | 
| 80     } | 95     } | 
| 81   } | 96   } | 
| 82 } | 97 } | 
| OLD | NEW | 
|---|