| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 "//ppapi/shared_impl:test_support", | 721 "//ppapi/shared_impl:test_support", |
| 722 ] | 722 ] |
| 723 } | 723 } |
| 724 | 724 |
| 725 if (enable_webrtc) { | 725 if (enable_webrtc) { |
| 726 sources += | 726 sources += |
| 727 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, | 727 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, |
| 728 ".", | 728 ".", |
| 729 "//content") | 729 "//content") |
| 730 deps += [ | 730 deps += [ |
| 731 "//media/blink", | |
| 732 "//third_party/libjingle:libjingle_webrtc", | 731 "//third_party/libjingle:libjingle_webrtc", |
| 733 "//third_party/webrtc/base:rtc_base", | 732 "//third_party/webrtc/base:rtc_base", |
| 734 "//third_party/webrtc/modules/desktop_capture:primitives", | 733 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 735 "//third_party/webrtc/modules/video_capture", | 734 "//third_party/webrtc/modules/video_capture", |
| 736 "//ui/shell_dialogs:shell_dialogs", | 735 "//ui/shell_dialogs:shell_dialogs", |
| 737 ] | 736 ] |
| 738 | 737 |
| 739 if (is_linux || is_mac || is_win) { | 738 if (is_linux || is_mac || is_win) { |
| 740 sources += | 739 sources += |
| 741 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] | 740 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 "//testing/gtest", | 896 "//testing/gtest", |
| 898 "//testing/perf", | 897 "//testing/perf", |
| 899 "//ui/gfx", | 898 "//ui/gfx", |
| 900 "//ui/gfx/geometry", | 899 "//ui/gfx/geometry", |
| 901 ] | 900 ] |
| 902 | 901 |
| 903 if (is_android) { | 902 if (is_android) { |
| 904 deps += [ "//testing/android/native_test:native_test_native_code" ] | 903 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 905 } | 904 } |
| 906 } | 905 } |
| OLD | NEW |