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

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

Issue 2695123002: Fix missing libyuv dependency on WebRTC unittests. (Closed)
Patch Set: 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 | « no previous file | no next file » | 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 1621 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 1632
1633 if (enable_webrtc && enable_plugins) { 1633 if (enable_webrtc && enable_plugins) {
1634 sources += [ 1634 sources += [
1635 "../renderer/media/pepper_to_video_track_adapter_unittest.cc", 1635 "../renderer/media/pepper_to_video_track_adapter_unittest.cc",
1636 "../renderer/media/video_track_to_pepper_adapter_unittest.cc", 1636 "../renderer/media/video_track_to_pepper_adapter_unittest.cc",
1637 ] 1637 ]
1638 } 1638 }
1639 1639
1640 # Screen capture unit tests. 1640 # Screen capture unit tests.
1641 if (is_linux || is_mac || is_win) { 1641 if (is_linux || is_mac || is_win) {
1642 deps += [ "//third_party/libyuv" ]
1642 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni ttest.cc" ] 1643 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni ttest.cc" ]
1643 if (use_aura) { 1644 if (use_aura) {
1644 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] 1645 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ]
1645 } 1646 }
1646 if (is_mac) { 1647 if (is_mac) {
1647 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ] 1648 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ]
1648 } 1649 }
1649 if (is_chromeos) { 1650 if (is_chromeos) {
1650 sources += 1651 sources +=
1651 [ "../browser/media/capture/desktop_capture_device_aura_unittest.cc" ] 1652 [ "../browser/media/capture/desktop_capture_device_aura_unittest.cc" ]
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1806 if (is_android) { 1807 if (is_android) {
1807 deps += [ "//testing/android/native_test:native_test_native_code" ] 1808 deps += [ "//testing/android/native_test:native_test_native_code" ]
1808 } 1809 }
1809 } 1810 }
1810 1811
1811 group("fuzzers") { 1812 group("fuzzers") {
1812 deps = [ 1813 deps = [
1813 "//content/test/fuzzer", 1814 "//content/test/fuzzer",
1814 ] 1815 ]
1815 } 1816 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698