| 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 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1646 "../renderer/media_recorder/media_recorder_handler_unittest.cc", | 1646 "../renderer/media_recorder/media_recorder_handler_unittest.cc", |
| 1647 "../renderer/media_recorder/video_track_recorder_unittest.cc", | 1647 "../renderer/media_recorder/video_track_recorder_unittest.cc", |
| 1648 "../renderer/p2p/filtering_network_manager_unittest.cc", | 1648 "../renderer/p2p/filtering_network_manager_unittest.cc", |
| 1649 "../renderer/p2p/ipc_network_manager_unittest.cc", | 1649 "../renderer/p2p/ipc_network_manager_unittest.cc", |
| 1650 "//third_party/webrtc/base/task_queue_unittest.cc", | 1650 "//third_party/webrtc/base/task_queue_unittest.cc", |
| 1651 ] | 1651 ] |
| 1652 deps += [ | 1652 deps += [ |
| 1653 "//third_party/opus", | 1653 "//third_party/opus", |
| 1654 "//third_party/webrtc/api:libjingle_peerconnection", | 1654 "//third_party/webrtc/api:libjingle_peerconnection", |
| 1655 "//third_party/webrtc/api:rtc_stats_api", | 1655 "//third_party/webrtc/api:rtc_stats_api", |
| 1656 "//third_party/webrtc/api/video_codecs:video_codecs_api", |
| 1656 "//third_party/webrtc/base:rtc_base", | 1657 "//third_party/webrtc/base:rtc_base", |
| 1657 "//third_party/webrtc/media:rtc_media", | 1658 "//third_party/webrtc/media:rtc_media", |
| 1658 "//third_party/webrtc/modules/desktop_capture:primitives", | 1659 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 1659 "//third_party/webrtc/modules/video_capture", | 1660 "//third_party/webrtc/modules/video_capture", |
| 1660 "//third_party/webrtc/stats:rtc_stats_test_utils", | 1661 "//third_party/webrtc/stats:rtc_stats_test_utils", |
| 1661 "//third_party/webrtc_overrides:init_webrtc", | 1662 "//third_party/webrtc_overrides:init_webrtc", |
| 1662 "//ui/shell_dialogs:shell_dialogs", | 1663 "//ui/shell_dialogs:shell_dialogs", |
| 1663 ] | 1664 ] |
| 1664 | 1665 |
| 1665 if (is_linux || is_mac || is_win) { | 1666 if (is_linux || is_mac || is_win) { |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1856 if (is_android) { | 1857 if (is_android) { |
| 1857 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1858 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1858 } | 1859 } |
| 1859 } | 1860 } |
| 1860 | 1861 |
| 1861 group("fuzzers") { | 1862 group("fuzzers") { |
| 1862 deps = [ | 1863 deps = [ |
| 1863 "//content/test/fuzzer", | 1864 "//content/test/fuzzer", |
| 1864 ] | 1865 ] |
| 1865 } | 1866 } |
| OLD | NEW |