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

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

Issue 2807743002: Fix a linker error when building content_unittests (Closed)
Patch Set: Created 3 years, 8 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 1665 matching lines...) Expand 10 before | Expand all | Expand 10 after
1676 } 1676 }
1677 } 1677 }
1678 1678
1679 if (enable_webrtc && enable_plugins) { 1679 if (enable_webrtc && enable_plugins) {
1680 sources += [ 1680 sources += [
1681 "../renderer/media/pepper_to_video_track_adapter_unittest.cc", 1681 "../renderer/media/pepper_to_video_track_adapter_unittest.cc",
1682 "../renderer/media/video_track_to_pepper_adapter_unittest.cc", 1682 "../renderer/media/video_track_to_pepper_adapter_unittest.cc",
1683 ] 1683 ]
1684 } 1684 }
1685 1685
1686 if (enable_mojo_media) {
1687 deps += [ "//media/mojo/services" ]
1688 }
1689
1686 # Screen capture unit tests. 1690 # Screen capture unit tests.
1687 if (is_linux || is_mac || is_win) { 1691 if (is_linux || is_mac || is_win) {
1688 deps += [ "//third_party/libyuv" ] 1692 deps += [ "//third_party/libyuv" ]
1689 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni ttest.cc" ] 1693 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni ttest.cc" ]
1690 if (use_aura) { 1694 if (use_aura) {
1691 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] 1695 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ]
1692 } 1696 }
1693 if (is_mac) { 1697 if (is_mac) {
1694 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ] 1698 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ]
1695 } 1699 }
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1855 if (is_android) { 1859 if (is_android) {
1856 deps += [ "//testing/android/native_test:native_test_native_code" ] 1860 deps += [ "//testing/android/native_test:native_test_native_code" ]
1857 } 1861 }
1858 } 1862 }
1859 1863
1860 group("fuzzers") { 1864 group("fuzzers") {
1861 deps = [ 1865 deps = [
1862 "//content/test/fuzzer", 1866 "//content/test/fuzzer",
1863 ] 1867 ]
1864 } 1868 }
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