| 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 1619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1630 "../renderer/media/video_track_to_pepper_adapter_unittest.cc", | 1630 "../renderer/media/video_track_to_pepper_adapter_unittest.cc", |
| 1631 ] | 1631 ] |
| 1632 } | 1632 } |
| 1633 | 1633 |
| 1634 # Screen capture unit tests. | 1634 # Screen capture unit tests. |
| 1635 if (is_linux || is_mac || is_win) { | 1635 if (is_linux || is_mac || is_win) { |
| 1636 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni
ttest.cc" ] | 1636 sources += [ "../browser/media/capture/web_contents_video_capture_device_uni
ttest.cc" ] |
| 1637 if (use_aura) { | 1637 if (use_aura) { |
| 1638 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] | 1638 sources += [ "../browser/media/capture/cursor_renderer_aura_unittest.cc" ] |
| 1639 } | 1639 } |
| 1640 if (is_mac) { |
| 1641 sources += [ "../browser/media/capture/cursor_renderer_mac_unittest.mm" ] |
| 1642 } |
| 1640 if (is_chromeos) { | 1643 if (is_chromeos) { |
| 1641 sources += | 1644 sources += |
| 1642 [ "../browser/media/capture/desktop_capture_device_aura_unittest.cc" ] | 1645 [ "../browser/media/capture/desktop_capture_device_aura_unittest.cc" ] |
| 1643 } | 1646 } |
| 1644 } | 1647 } |
| 1645 | 1648 |
| 1646 if (is_linux) { | 1649 if (is_linux) { |
| 1647 if (use_dbus) { | 1650 if (use_dbus) { |
| 1648 deps += [ "//dbus:test_support" ] | 1651 deps += [ "//dbus:test_support" ] |
| 1649 } | 1652 } |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1797 if (is_android) { | 1800 if (is_android) { |
| 1798 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1801 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1799 } | 1802 } |
| 1800 } | 1803 } |
| 1801 | 1804 |
| 1802 group("fuzzers") { | 1805 group("fuzzers") { |
| 1803 deps = [ | 1806 deps = [ |
| 1804 "//content/test/fuzzer", | 1807 "//content/test/fuzzer", |
| 1805 ] | 1808 ] |
| 1806 } | 1809 } |
| OLD | NEW |