| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 | 670 |
| 671 if (enable_webrtc) { | 671 if (enable_webrtc) { |
| 672 sources += | 672 sources += |
| 673 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, | 673 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, |
| 674 ".", | 674 ".", |
| 675 "//content") | 675 "//content") |
| 676 deps += [ | 676 deps += [ |
| 677 "//third_party/libjingle:libjingle_webrtc", | 677 "//third_party/libjingle:libjingle_webrtc", |
| 678 "//third_party/libjingle:libpeerconnection", | 678 "//third_party/libjingle:libpeerconnection", |
| 679 "//third_party/webrtc/modules/video_capture", | 679 "//third_party/webrtc/modules/video_capture", |
| 680 "//ui/shell_dialogs:shell_dialogs", |
| 680 ] | 681 ] |
| 681 | 682 |
| 682 if (is_linux || is_mac || is_win) { | 683 if (is_linux || is_mac || is_win) { |
| 683 sources += | 684 sources += |
| 684 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] | 685 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] |
| 685 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 686 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
| 686 } | 687 } |
| 687 | 688 |
| 688 if (is_chromeos) { | 689 if (is_chromeos) { |
| 689 sources += | 690 sources += |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 deps += [ | 919 deps += [ |
| 919 "//gpu:test_support", | 920 "//gpu:test_support", |
| 920 "//media/base/android", | 921 "//media/base/android", |
| 921 "//media/base/android:media_java", | 922 "//media/base/android:media_java", |
| 922 "//testing/gmock", | 923 "//testing/gmock", |
| 923 "//ui/android:ui_java", | 924 "//ui/android:ui_java", |
| 924 ] | 925 ] |
| 925 } | 926 } |
| 926 } | 927 } |
| 927 } | 928 } |
| OLD | NEW |