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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 "../renderer/media/mock_peer_connection_impl.h", | 325 "../renderer/media/mock_peer_connection_impl.h", |
326 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", | 326 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", |
327 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", | 327 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", |
328 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", | 328 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", |
329 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", | 329 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", |
330 ] | 330 ] |
331 | 331 |
332 deps += [ | 332 deps += [ |
333 "//third_party/webrtc/api:libjingle_peerconnection", | 333 "//third_party/webrtc/api:libjingle_peerconnection", |
334 "//third_party/webrtc/api:rtc_stats_api", | 334 "//third_party/webrtc/api:rtc_stats_api", |
335 "//third_party/webrtc/base:rtc_base", | 335 "//third_party/webrtc/base:rtc_base_approved", |
336 "//third_party/webrtc/media:rtc_media_base", | 336 "//third_party/webrtc/media:rtc_media_base", |
337 "//third_party/webrtc/modules/video_capture", | 337 "//third_party/webrtc/modules/video_capture", |
338 "//third_party/webrtc/stats:rtc_stats", | 338 "//third_party/webrtc/stats:rtc_stats", |
339 "//third_party/webrtc_overrides:init_webrtc", | 339 "//third_party/webrtc_overrides:init_webrtc", |
340 ] | 340 ] |
341 } | 341 } |
342 | 342 |
343 if (use_glib) { | 343 if (use_glib) { |
344 configs += [ "//build/config/linux:glib" ] | 344 configs += [ "//build/config/linux:glib" ] |
345 } | 345 } |
(...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1830 if (is_android) { | 1830 if (is_android) { |
1831 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1831 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1832 } | 1832 } |
1833 } | 1833 } |
1834 | 1834 |
1835 group("fuzzers") { | 1835 group("fuzzers") { |
1836 deps = [ | 1836 deps = [ |
1837 "//content/test/fuzzer", | 1837 "//content/test/fuzzer", |
1838 ] | 1838 ] |
1839 } | 1839 } |
OLD | NEW |