| 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("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 "//device/gamepad", | 657 "//device/gamepad", |
| 658 "//device/gamepad:test_helpers", | 658 "//device/gamepad:test_helpers", |
| 659 "//gin", | 659 "//gin", |
| 660 "//gpu", | 660 "//gpu", |
| 661 "//gpu:test_support", | 661 "//gpu:test_support", |
| 662 "//ipc:test_support", | 662 "//ipc:test_support", |
| 663 "//media:shared_memory_support", | 663 "//media:shared_memory_support", |
| 664 "//media:test_support", | 664 "//media:test_support", |
| 665 "//media/audio:test_support", | 665 "//media/audio:test_support", |
| 666 "//media/base:test_support", | 666 "//media/base:test_support", |
| 667 "//media/blink", |
| 667 "//media/capture", | 668 "//media/capture", |
| 668 "//media/midi:midi", | 669 "//media/midi:midi", |
| 669 "//mojo/edk/test:test_support", | 670 "//mojo/edk/test:test_support", |
| 670 "//mojo/public/cpp/bindings", | 671 "//mojo/public/cpp/bindings", |
| 671 "//net:extras", | 672 "//net:extras", |
| 672 "//net:test_support", | 673 "//net:test_support", |
| 673 "//ppapi/c", | 674 "//ppapi/c", |
| 674 "//printing", | 675 "//printing", |
| 675 "//skia", | 676 "//skia", |
| 676 "//sql", | 677 "//sql", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 "//ppapi/shared_impl:test_support", | 722 "//ppapi/shared_impl:test_support", |
| 722 ] | 723 ] |
| 723 } | 724 } |
| 724 | 725 |
| 725 if (enable_webrtc) { | 726 if (enable_webrtc) { |
| 726 sources += | 727 sources += |
| 727 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, | 728 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, |
| 728 ".", | 729 ".", |
| 729 "//content") | 730 "//content") |
| 730 deps += [ | 731 deps += [ |
| 731 "//media/blink", | |
| 732 "//third_party/libjingle:libjingle_webrtc", | 732 "//third_party/libjingle:libjingle_webrtc", |
| 733 "//third_party/webrtc/api:libjingle_peerconnection", | 733 "//third_party/webrtc/api:libjingle_peerconnection", |
| 734 "//third_party/webrtc/base:rtc_base", | 734 "//third_party/webrtc/base:rtc_base", |
| 735 "//third_party/webrtc/media:rtc_media", | 735 "//third_party/webrtc/media:rtc_media", |
| 736 "//third_party/webrtc/modules/desktop_capture:primitives", | 736 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 737 "//third_party/webrtc/modules/video_capture", | 737 "//third_party/webrtc/modules/video_capture", |
| 738 "//ui/shell_dialogs:shell_dialogs", | 738 "//ui/shell_dialogs:shell_dialogs", |
| 739 ] | 739 ] |
| 740 | 740 |
| 741 if (is_linux || is_mac || is_win) { | 741 if (is_linux || is_mac || is_win) { |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 if (is_android) { | 901 if (is_android) { |
| 902 deps += [ "//testing/android/native_test:native_test_native_code" ] | 902 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 903 } | 903 } |
| 904 } | 904 } |
| 905 | 905 |
| 906 group("fuzzers") { | 906 group("fuzzers") { |
| 907 deps = [ | 907 deps = [ |
| 908 "//content/test/fuzzer", | 908 "//content/test/fuzzer", |
| 909 ] | 909 ] |
| 910 } | 910 } |
| OLD | NEW |