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 21 matching lines...) Expand all Loading... |
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:optional", |
40 "../api:video_frame_api", | 40 "../api:video_frame_api", |
41 "../rtc_base:rtc_base_approved", | 41 "../rtc_base:rtc_base_approved", |
| 42 "video_coding:codec_globals_headers", |
42 ] | 43 ] |
43 } | 44 } |
44 | 45 |
45 if (rtc_include_tests) { | 46 if (rtc_include_tests) { |
46 modules_tests_resources = [ | 47 modules_tests_resources = [ |
47 "../resources/audio_coding/testfile32kHz.pcm", | 48 "../resources/audio_coding/testfile32kHz.pcm", |
48 "../resources/audio_coding/teststereo32kHz.pcm", | 49 "../resources/audio_coding/teststereo32kHz.pcm", |
49 "../resources/foreman_cif.yuv", | 50 "../resources/foreman_cif.yuv", |
50 "../resources/paris_qcif.yuv", | 51 "../resources/paris_qcif.yuv", |
51 ] | 52 ] |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 shard_timeout = 900 | 259 shard_timeout = 900 |
259 } | 260 } |
260 if (is_ios) { | 261 if (is_ios) { |
261 info_plist = "../test/ios/Info.plist" | 262 info_plist = "../test/ios/Info.plist" |
262 deps += [ ":modules_unittests_bundle_data" ] | 263 deps += [ ":modules_unittests_bundle_data" ] |
263 configs += [ "..:common_objc" ] | 264 configs += [ "..:common_objc" ] |
264 ldflags = [ "-ObjC" ] | 265 ldflags = [ "-ObjC" ] |
265 } | 266 } |
266 } | 267 } |
267 } | 268 } |
OLD | NEW |