| 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 1665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | |
| 1690 # Screen capture unit tests. | 1686 # Screen capture unit tests. |
| 1691 if (is_linux || is_mac || is_win) { | 1687 if (is_linux || is_mac || is_win) { |
| 1692 deps += [ "//third_party/libyuv" ] | 1688 deps += [ "//third_party/libyuv" ] |
| 1693 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni
ttest.cc" ] | 1689 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni
ttest.cc" ] |
| 1694 if (use_aura) { | 1690 if (use_aura) { |
| 1695 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] | 1691 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] |
| 1696 } | 1692 } |
| 1697 if (is_mac) { | 1693 if (is_mac) { |
| 1698 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ] | 1694 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ] |
| 1699 } | 1695 } |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1859 if (is_android) { | 1855 if (is_android) { |
| 1860 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1856 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1861 } | 1857 } |
| 1862 } | 1858 } |
| 1863 | 1859 |
| 1864 group("fuzzers") { | 1860 group("fuzzers") { |
| 1865 deps = [ | 1861 deps = [ |
| 1866 "//content/test/fuzzer", | 1862 "//content/test/fuzzer", |
| 1867 ] | 1863 ] |
| 1868 } | 1864 } |
| OLD | NEW |