Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: content/test/BUILD.gn

Issue 2694363005: Add gn dependency on rtc_task_runner. (Closed)
Patch Set: Dropped two of the rtc_task_runner deps. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/BUILD.gn ('k') | remoting/client/display/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", 324 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h",
325 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", 325 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc",
326 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", 326 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h",
327 ] 327 ]
328 328
329 deps += [ 329 deps += [
330 "//third_party/libjingle/webrtc:libjingle_webrtc", 330 "//third_party/libjingle/webrtc:libjingle_webrtc",
331 "//third_party/webrtc/api:libjingle_peerconnection", 331 "//third_party/webrtc/api:libjingle_peerconnection",
332 "//third_party/webrtc/api:rtc_stats_api", 332 "//third_party/webrtc/api:rtc_stats_api",
333 "//third_party/webrtc/base:rtc_base", 333 "//third_party/webrtc/base:rtc_base",
334 "//third_party/webrtc/base:rtc_task_runner",
334 "//third_party/webrtc/media:rtc_media_base", 335 "//third_party/webrtc/media:rtc_media_base",
335 "//third_party/webrtc/modules/video_capture", 336 "//third_party/webrtc/modules/video_capture",
336 "//third_party/webrtc/stats:rtc_stats", 337 "//third_party/webrtc/stats:rtc_stats",
337 ] 338 ]
338 } 339 }
339 340
340 if (use_glib) { 341 if (use_glib) {
341 configs += [ "//build/config/linux:glib" ] 342 configs += [ "//build/config/linux:glib" ]
342 } 343 }
343 344
(...skipping 1259 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 "../renderer/p2p/filtering_network_manager_unittest.cc", 1604 "../renderer/p2p/filtering_network_manager_unittest.cc",
1604 "../renderer/p2p/ipc_network_manager_unittest.cc", 1605 "../renderer/p2p/ipc_network_manager_unittest.cc",
1605 "//third_party/webrtc/base/task_queue_unittest.cc", 1606 "//third_party/webrtc/base/task_queue_unittest.cc",
1606 ] 1607 ]
1607 deps += [ 1608 deps += [
1608 "//third_party/libjingle/webrtc:libjingle_webrtc", 1609 "//third_party/libjingle/webrtc:libjingle_webrtc",
1609 "//third_party/opus", 1610 "//third_party/opus",
1610 "//third_party/webrtc/api:libjingle_peerconnection", 1611 "//third_party/webrtc/api:libjingle_peerconnection",
1611 "//third_party/webrtc/api:rtc_stats_api", 1612 "//third_party/webrtc/api:rtc_stats_api",
1612 "//third_party/webrtc/base:rtc_base", 1613 "//third_party/webrtc/base:rtc_base",
1614 "//third_party/webrtc/base:rtc_task_runner",
1613 "//third_party/webrtc/media:rtc_media", 1615 "//third_party/webrtc/media:rtc_media",
1614 "//third_party/webrtc/modules/desktop_capture:primitives", 1616 "//third_party/webrtc/modules/desktop_capture:primitives",
1615 "//third_party/webrtc/modules/video_capture", 1617 "//third_party/webrtc/modules/video_capture",
1616 "//third_party/webrtc/stats:rtc_stats_test_utils", 1618 "//third_party/webrtc/stats:rtc_stats_test_utils",
1617 "//ui/shell_dialogs:shell_dialogs", 1619 "//ui/shell_dialogs:shell_dialogs",
1618 ] 1620 ]
1619 1621
1620 if (is_linux || is_mac || is_win) { 1622 if (is_linux || is_mac || is_win) {
1621 sources += 1623 sources +=
1622 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] 1624 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ]
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1809 if (is_android) { 1811 if (is_android) {
1810 deps += [ "//testing/android/native_test:native_test_native_code" ] 1812 deps += [ "//testing/android/native_test:native_test_native_code" ]
1811 } 1813 }
1812 } 1814 }
1813 1815
1814 group("fuzzers") { 1816 group("fuzzers") {
1815 deps = [ 1817 deps = [
1816 "//content/test/fuzzer", 1818 "//content/test/fuzzer",
1817 ] 1819 ]
1818 } 1820 }
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | remoting/client/display/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698