| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 # base/android/jni_android.h triggering it: | 499 # base/android/jni_android.h triggering it: |
| 500 # const BASE_EXPORT jobject GetApplicationContext() | 500 # const BASE_EXPORT jobject GetApplicationContext() |
| 501 # error: type qualifiers ignored on function return type | 501 # error: type qualifiers ignored on function return type |
| 502 cflags = [ "-Wno-ignored-qualifiers" ] | 502 cflags = [ "-Wno-ignored-qualifiers" ] |
| 503 sources += [ | 503 sources += [ |
| 504 "audio_device/android/audio_device_unittest.cc", | 504 "audio_device/android/audio_device_unittest.cc", |
| 505 "audio_device/android/audio_manager_unittest.cc", | 505 "audio_device/android/audio_manager_unittest.cc", |
| 506 "audio_device/android/ensure_initialized.cc", | 506 "audio_device/android/ensure_initialized.cc", |
| 507 "audio_device/android/ensure_initialized.h", | 507 "audio_device/android/ensure_initialized.h", |
| 508 ] | 508 ] |
| 509 shard_timeout = 900 |
| 510 } |
| 509 | 511 |
| 510 # This needs to be kept in sync with the .isolate file. | 512 if (is_android || is_ios) { |
| 511 # TODO(kjellander); Move this to android_assets targets instead. | |
| 512 data = [ | 513 data = [ |
| 513 "//data/audio_processing/output_data_fixed.pb", | 514 "//data/audio_processing/output_data_fixed.pb", |
| 514 "//data/audio_processing/output_data_float.pb", | 515 "//data/audio_processing/output_data_float.pb", |
| 515 "//data/audio_processing/output_data_mac.pb", | 516 "//data/audio_processing/output_data_mac.pb", |
| 516 "//data/voice_engine/audio_tiny48.wav", | 517 "//data/voice_engine/audio_tiny48.wav", |
| 517 "//resources/att-downlink.rx", | 518 "//resources/att-downlink.rx", |
| 518 "//resources/att-uplink.rx", | 519 "//resources/att-uplink.rx", |
| 519 "//resources/audio_coding/neteq_opus.rtp", | 520 "//resources/audio_coding/neteq_opus.rtp", |
| 520 "//resources/audio_coding/neteq_universal_new.rtp", | 521 "//resources/audio_coding/neteq_universal_new.rtp", |
| 521 "//resources/audio_coding/speech_mono_16kHz.pcm", | 522 "//resources/audio_coding/speech_mono_16kHz.pcm", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 "//resources/synthetic-trace.rx", | 605 "//resources/synthetic-trace.rx", |
| 605 "//resources/tmobile-downlink.rx", | 606 "//resources/tmobile-downlink.rx", |
| 606 "//resources/tmobile-uplink.rx", | 607 "//resources/tmobile-uplink.rx", |
| 607 "//resources/utility/encapsulated_pcm16b_8khz.wav", | 608 "//resources/utility/encapsulated_pcm16b_8khz.wav", |
| 608 "//resources/utility/encapsulated_pcmu_8khz.wav", | 609 "//resources/utility/encapsulated_pcmu_8khz.wav", |
| 609 "//resources/verizon3g-downlink.rx", | 610 "//resources/verizon3g-downlink.rx", |
| 610 "//resources/verizon3g-uplink.rx", | 611 "//resources/verizon3g-uplink.rx", |
| 611 "//resources/verizon4g-downlink.rx", | 612 "//resources/verizon4g-downlink.rx", |
| 612 "//resources/verizon4g-uplink.rx", | 613 "//resources/verizon4g-uplink.rx", |
| 613 ] | 614 ] |
| 614 | |
| 615 shard_timeout = 900 | |
| 616 } | 615 } |
| 617 | 616 |
| 618 if (is_ios) { | 617 if (is_ios) { |
| 619 configs += [ | 618 configs += [ |
| 620 "..:common_objc", | 619 "..:common_objc", |
| 621 "//build/config/compiler:enable_arc", | 620 "//build/config/compiler:enable_arc", |
| 622 ] | 621 ] |
| 623 | 622 |
| 624 sources += [ | 623 sources += [ |
| 625 "audio_device/ios/audio_device_unittest_ios.cc", | 624 "audio_device/ios/audio_device_unittest_ios.cc", |
| 626 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 625 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 627 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 626 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 628 ] | 627 ] |
| 629 | 628 |
| 630 ldflags = [ "-ObjC" ] | 629 ldflags = [ "-ObjC" ] |
| 631 | 630 |
| 632 # TODO(kjellander): Mac bundle files. | 631 # TODO(kjellander): Mac bundle files. |
| 633 } | 632 } |
| 634 } | 633 } |
| 635 } | 634 } |
| OLD | NEW |