| 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 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1613 "../renderer/media_recorder/media_recorder_handler_unittest.cc", | 1613 "../renderer/media_recorder/media_recorder_handler_unittest.cc", |
| 1614 "../renderer/media_recorder/video_track_recorder_unittest.cc", | 1614 "../renderer/media_recorder/video_track_recorder_unittest.cc", |
| 1615 "../renderer/p2p/filtering_network_manager_unittest.cc", | 1615 "../renderer/p2p/filtering_network_manager_unittest.cc", |
| 1616 "../renderer/p2p/ipc_network_manager_unittest.cc", | 1616 "../renderer/p2p/ipc_network_manager_unittest.cc", |
| 1617 "//third_party/webrtc/base/task_queue_unittest.cc", | 1617 "//third_party/webrtc/base/task_queue_unittest.cc", |
| 1618 ] | 1618 ] |
| 1619 deps += [ | 1619 deps += [ |
| 1620 "//third_party/opus", | 1620 "//third_party/opus", |
| 1621 "//third_party/webrtc/api:libjingle_peerconnection", | 1621 "//third_party/webrtc/api:libjingle_peerconnection", |
| 1622 "//third_party/webrtc/api:rtc_stats_api", | 1622 "//third_party/webrtc/api:rtc_stats_api", |
| 1623 "//third_party/webrtc/api:video_frame_api", |
| 1623 "//third_party/webrtc/api/video_codecs:video_codecs_api", | 1624 "//third_party/webrtc/api/video_codecs:video_codecs_api", |
| 1624 "//third_party/webrtc/base:rtc_base", | 1625 "//third_party/webrtc/base:rtc_base", |
| 1625 "//third_party/webrtc/media:rtc_media", | 1626 "//third_party/webrtc/media:rtc_media", |
| 1626 "//third_party/webrtc/modules/desktop_capture:primitives", | 1627 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 1627 "//third_party/webrtc/modules/video_capture", | 1628 "//third_party/webrtc/modules/video_capture", |
| 1628 "//third_party/webrtc/stats:rtc_stats_test_utils", | 1629 "//third_party/webrtc/stats:rtc_stats_test_utils", |
| 1629 "//third_party/webrtc_overrides:init_webrtc", | 1630 "//third_party/webrtc_overrides:init_webrtc", |
| 1630 "//ui/shell_dialogs:shell_dialogs", | 1631 "//ui/shell_dialogs:shell_dialogs", |
| 1631 ] | 1632 ] |
| 1632 | 1633 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1823 if (is_android) { | 1824 if (is_android) { |
| 1824 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1825 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1825 } | 1826 } |
| 1826 } | 1827 } |
| 1827 | 1828 |
| 1828 group("fuzzers") { | 1829 group("fuzzers") { |
| 1829 deps = [ | 1830 deps = [ |
| 1830 "//content/test/fuzzer", | 1831 "//content/test/fuzzer", |
| 1831 ] | 1832 ] |
| 1832 } | 1833 } |
| OLD | NEW |