| 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("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 deps = [ | 465 deps = [ |
| 466 ":test_support", | 466 ":test_support", |
| 467 "//cc", | 467 "//cc", |
| 468 "//cc/blink", | 468 "//cc/blink", |
| 469 "//components/test_runner:test_runner", | 469 "//components/test_runner:test_runner", |
| 470 "//content/browser:for_content_tests", | 470 "//content/browser:for_content_tests", |
| 471 "//content/child:for_content_tests", | 471 "//content/child:for_content_tests", |
| 472 "//content/public/common", | 472 "//content/public/common", |
| 473 "//content/renderer:for_content_tests", | 473 "//content/renderer:for_content_tests", |
| 474 "//device/bluetooth", | 474 "//device/bluetooth", |
| 475 "//services/ui/public/cpp/gpu", |
| 475 "//skia", | 476 "//skia", |
| 476 "//ui/accessibility:ax_gen", | 477 "//ui/accessibility:ax_gen", |
| 477 "//ui/events/blink", | 478 "//ui/events/blink", |
| 478 "//v8", | 479 "//v8", |
| 479 ] | 480 ] |
| 480 | 481 |
| 481 if (is_android) { | 482 if (is_android) { |
| 482 deps += [ "//content/public/test/android:test_support_content_jni_headers" ] | 483 deps += [ "//content/public/test/android:test_support_content_jni_headers" ] |
| 483 } | 484 } |
| 484 } | 485 } |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 "//media:test_support", | 709 "//media:test_support", |
| 709 "//media/audio:test_support", | 710 "//media/audio:test_support", |
| 710 "//media/base:test_support", | 711 "//media/base:test_support", |
| 711 "//mojo/edk/system", | 712 "//mojo/edk/system", |
| 712 "//mojo/edk/test:test_support", | 713 "//mojo/edk/test:test_support", |
| 713 "//mojo/public/cpp/bindings", | 714 "//mojo/public/cpp/bindings", |
| 714 "//mojo/public/js", | 715 "//mojo/public/js", |
| 715 "//net:test_support", | 716 "//net:test_support", |
| 716 "//ppapi/features", | 717 "//ppapi/features", |
| 717 "//services/service_manager/public/cpp", | 718 "//services/service_manager/public/cpp", |
| 719 "//services/ui/public/cpp/gpu", |
| 718 "//storage/browser", | 720 "//storage/browser", |
| 719 "//testing/gmock", | 721 "//testing/gmock", |
| 720 "//testing/gtest", | 722 "//testing/gtest", |
| 721 "//third_party/WebKit/public:blink", | 723 "//third_party/WebKit/public:blink", |
| 722 "//third_party/leveldatabase", | 724 "//third_party/leveldatabase", |
| 723 "//third_party/mesa:osmesa", | 725 "//third_party/mesa:osmesa", |
| 724 "//third_party/zlib", | 726 "//third_party/zlib", |
| 725 "//ui/accessibility", | 727 "//ui/accessibility", |
| 726 "//ui/accessibility:ax_gen", | 728 "//ui/accessibility:ax_gen", |
| 727 "//ui/base:test_support", | 729 "//ui/base:test_support", |
| (...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1728 if (is_android) { | 1730 if (is_android) { |
| 1729 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1731 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1730 } | 1732 } |
| 1731 } | 1733 } |
| 1732 | 1734 |
| 1733 group("fuzzers") { | 1735 group("fuzzers") { |
| 1734 deps = [ | 1736 deps = [ |
| 1735 "//content/test/fuzzer", | 1737 "//content/test/fuzzer", |
| 1736 ] | 1738 ] |
| 1737 } | 1739 } |
| OLD | NEW |