| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "../call", | 564 "../call", |
| 565 "../call:rtp_sender", | 565 "../call:rtp_sender", |
| 566 "../call:video_stream_api", | 566 "../call:video_stream_api", |
| 567 "../common_video", | 567 "../common_video", |
| 568 "../logging:rtc_event_log_api", | 568 "../logging:rtc_event_log_api", |
| 569 "../modules/audio_device:mock_audio_device", | 569 "../modules/audio_device:mock_audio_device", |
| 570 "../modules/audio_mixer:audio_mixer_impl", | 570 "../modules/audio_mixer:audio_mixer_impl", |
| 571 "../modules/audio_processing", | 571 "../modules/audio_processing", |
| 572 "../modules/rtp_rtcp", | 572 "../modules/rtp_rtcp", |
| 573 "../modules/rtp_rtcp:mock_rtp_rtcp", | 573 "../modules/rtp_rtcp:mock_rtp_rtcp", |
| 574 "../modules/video_coding:video_coding_utility", |
| 574 "../modules/video_coding:webrtc_h264", | 575 "../modules/video_coding:webrtc_h264", |
| 575 "../modules/video_coding:webrtc_vp8", | 576 "../modules/video_coding:webrtc_vp8", |
| 576 "../modules/video_coding:webrtc_vp9", | 577 "../modules/video_coding:webrtc_vp9", |
| 577 "../rtc_base:rtc_base_approved", | 578 "../rtc_base:rtc_base_approved", |
| 578 "../rtc_base:rtc_task_queue", | 579 "../rtc_base:rtc_task_queue", |
| 579 "../rtc_base:sequenced_task_checker", | 580 "../rtc_base:sequenced_task_checker", |
| 580 "../system_wrappers", | 581 "../system_wrappers", |
| 581 "../video", | 582 "../video", |
| 582 "../voice_engine", | 583 "../voice_engine", |
| 583 "//testing/gmock", | 584 "//testing/gmock", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 ] | 722 ] |
| 722 deps = [ | 723 deps = [ |
| 723 "../rtc_base:base_java", | 724 "../rtc_base:base_java", |
| 724 "//testing/android/native_test:native_test_java", | 725 "//testing/android/native_test:native_test_java", |
| 725 ] | 726 ] |
| 726 | 727 |
| 727 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 728 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
| 728 no_build_hooks = true | 729 no_build_hooks = true |
| 729 } | 730 } |
| 730 } | 731 } |
| OLD | NEW |