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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 | 750 |
751 if (is_android || is_chromecast) { | 751 if (is_android || is_chromecast) { |
752 sources -= [ | 752 sources -= [ |
753 "../renderer/media/audio_track_recorder_unittest.cc", | 753 "../renderer/media/audio_track_recorder_unittest.cc", |
754 "../renderer/media/media_recorder_handler_unittest.cc", | 754 "../renderer/media/media_recorder_handler_unittest.cc", |
755 "../renderer/media/video_track_recorder_unittest.cc", | 755 "../renderer/media/video_track_recorder_unittest.cc", |
756 ] | 756 ] |
757 } | 757 } |
758 } | 758 } |
759 | 759 |
| 760 if (enable_webrtc && enable_plugins) { |
| 761 sources += rebase_path( |
| 762 content_tests_gypi_values.content_unittests_plugin_webrtc_sources, |
| 763 ".", |
| 764 "//content") |
| 765 } |
| 766 |
760 if (enable_web_speech) { | 767 if (enable_web_speech) { |
761 sources += | 768 sources += |
762 rebase_path(content_tests_gypi_values.content_unittests_speech_sources, | 769 rebase_path(content_tests_gypi_values.content_unittests_speech_sources, |
763 ".", | 770 ".", |
764 "//content") | 771 "//content") |
765 } | 772 } |
766 | 773 |
767 if (is_linux) { | 774 if (is_linux) { |
768 if (use_dbus) { | 775 if (use_dbus) { |
769 deps += [ "//dbus:test_support" ] | 776 deps += [ "//dbus:test_support" ] |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1012 "//gpu:test_support", | 1019 "//gpu:test_support", |
1013 "//media/base/android", | 1020 "//media/base/android", |
1014 "//media/base/android:media_java", | 1021 "//media/base/android:media_java", |
1015 "//media/capture/video/android:capture_java", | 1022 "//media/capture/video/android:capture_java", |
1016 "//testing/gmock", | 1023 "//testing/gmock", |
1017 "//ui/android:ui_java", | 1024 "//ui/android:ui_java", |
1018 ] | 1025 ] |
1019 } | 1026 } |
1020 } | 1027 } |
1021 } | 1028 } |
OLD | NEW |