| OLD | NEW |
| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 ] | 29 ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 rtc_source_set("module_api") { | 32 rtc_source_set("module_api") { |
| 33 sources = [ | 33 sources = [ |
| 34 "include/module.h", | 34 "include/module.h", |
| 35 "include/module_common_types.h", | 35 "include/module_common_types.h", |
| 36 ] | 36 ] |
| 37 deps = [ | 37 deps = [ |
| 38 "..:webrtc_common", | 38 "..:webrtc_common", |
| 39 "../api:optional", |
| 39 "../api:video_frame_api", | 40 "../api:video_frame_api", |
| 40 "../rtc_base:rtc_base_approved", | 41 "../rtc_base:rtc_base_approved", |
| 41 ] | 42 ] |
| 42 } | 43 } |
| 43 | 44 |
| 44 if (rtc_include_tests) { | 45 if (rtc_include_tests) { |
| 45 modules_tests_resources = [ | 46 modules_tests_resources = [ |
| 46 "../../resources/audio_coding/testfile32kHz.pcm", | 47 "../../resources/audio_coding/testfile32kHz.pcm", |
| 47 "../../resources/audio_coding/teststereo32kHz.pcm", | 48 "../../resources/audio_coding/teststereo32kHz.pcm", |
| 48 "../../resources/foreman_cif.yuv", | 49 "../../resources/foreman_cif.yuv", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 shard_timeout = 900 | 252 shard_timeout = 900 |
| 252 } | 253 } |
| 253 if (is_ios) { | 254 if (is_ios) { |
| 254 info_plist = "../test/ios/Info.plist" | 255 info_plist = "../test/ios/Info.plist" |
| 255 deps += [ ":modules_unittests_bundle_data" ] | 256 deps += [ ":modules_unittests_bundle_data" ] |
| 256 configs += [ "..:common_objc" ] | 257 configs += [ "..:common_objc" ] |
| 257 ldflags = [ "-ObjC" ] | 258 ldflags = [ "-ObjC" ] |
| 258 } | 259 } |
| 259 } | 260 } |
| 260 } | 261 } |
| OLD | NEW |