OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
291 "../renderer/media/mock_peer_connection_impl.h", | 291 "../renderer/media/mock_peer_connection_impl.h", |
292 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", | 292 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", |
293 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", | 293 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", |
294 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", | 294 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", |
295 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", | 295 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", |
296 ] | 296 ] |
297 | 297 |
298 deps += [ | 298 deps += [ |
299 "//third_party/libjingle:libjingle_webrtc", | 299 "//third_party/libjingle:libjingle_webrtc", |
300 "//third_party/webrtc/api:libjingle_peerconnection", | 300 "//third_party/webrtc/api:libjingle_peerconnection", |
301 "//third_party/webrtc/api:rtc_stats_api", | |
301 "//third_party/webrtc/base:rtc_base", | 302 "//third_party/webrtc/base:rtc_base", |
302 "//third_party/webrtc/media:rtc_media", | 303 "//third_party/webrtc/media:rtc_media", |
303 "//third_party/webrtc/modules/video_capture", | 304 "//third_party/webrtc/modules/video_capture", |
305 "//third_party/webrtc/stats:rtc_stats", | |
hbos_chromium
2016/09/23 08:29:46
Because mock_peer_connection_impl.h includes third
| |
304 ] | 306 ] |
305 } | 307 } |
306 | 308 |
307 if (use_glib) { | 309 if (use_glib) { |
308 configs += [ "//build/config/linux:glib" ] | 310 configs += [ "//build/config/linux:glib" ] |
309 } | 311 } |
310 | 312 |
311 if (use_aura) { | 313 if (use_aura) { |
312 deps += [ | 314 deps += [ |
313 "//ui/aura:test_support", | 315 "//ui/aura:test_support", |
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1500 "../renderer/p2p/ipc_network_manager_unittest.cc", | 1502 "../renderer/p2p/ipc_network_manager_unittest.cc", |
1501 "//third_party/webrtc/base/task_queue_unittest.cc", | 1503 "//third_party/webrtc/base/task_queue_unittest.cc", |
1502 ] | 1504 ] |
1503 deps += [ | 1505 deps += [ |
1504 "//third_party/libjingle:libjingle_webrtc", | 1506 "//third_party/libjingle:libjingle_webrtc", |
1505 "//third_party/webrtc/api:libjingle_peerconnection", | 1507 "//third_party/webrtc/api:libjingle_peerconnection", |
1506 "//third_party/webrtc/base:rtc_base", | 1508 "//third_party/webrtc/base:rtc_base", |
1507 "//third_party/webrtc/media:rtc_media", | 1509 "//third_party/webrtc/media:rtc_media", |
1508 "//third_party/webrtc/modules/desktop_capture:primitives", | 1510 "//third_party/webrtc/modules/desktop_capture:primitives", |
1509 "//third_party/webrtc/modules/video_capture", | 1511 "//third_party/webrtc/modules/video_capture", |
1512 "//third_party/webrtc/stats:rtc_stats_test_utils", | |
hbos_chromium
2016/09/23 08:29:46
Because rtc_peer_connection_handler_unittest.cc in
| |
1510 "//ui/shell_dialogs:shell_dialogs", | 1513 "//ui/shell_dialogs:shell_dialogs", |
1511 ] | 1514 ] |
1512 | 1515 |
1513 if (is_linux || is_mac || is_win) { | 1516 if (is_linux || is_mac || is_win) { |
1514 sources += | 1517 sources += |
1515 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] | 1518 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] |
1516 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 1519 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
1517 } | 1520 } |
1518 | 1521 |
1519 if (is_chromeos) { | 1522 if (is_chromeos) { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1677 if (is_android) { | 1680 if (is_android) { |
1678 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1681 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1679 } | 1682 } |
1680 } | 1683 } |
1681 | 1684 |
1682 group("fuzzers") { | 1685 group("fuzzers") { |
1683 deps = [ | 1686 deps = [ |
1684 "//content/test/fuzzer", | 1687 "//content/test/fuzzer", |
1685 ] | 1688 ] |
1686 } | 1689 } |
OLD | NEW |