| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 "../public/test/layouttest_support.h", | 474 "../public/test/layouttest_support.h", |
| 475 "../public/test/nested_message_pump_android.cc", | 475 "../public/test/nested_message_pump_android.cc", |
| 476 "../public/test/nested_message_pump_android.h", | 476 "../public/test/nested_message_pump_android.h", |
| 477 "layouttest_support.cc", | 477 "layouttest_support.cc", |
| 478 ] | 478 ] |
| 479 | 479 |
| 480 deps = [ | 480 deps = [ |
| 481 ":test_support", | 481 ":test_support", |
| 482 "//cc", | 482 "//cc", |
| 483 "//cc/blink", | 483 "//cc/blink", |
| 484 "//components/test_runner:test_runner", | |
| 485 "//content/browser:for_content_tests", | 484 "//content/browser:for_content_tests", |
| 486 "//content/child:for_content_tests", | 485 "//content/child:for_content_tests", |
| 487 "//content/public/common", | 486 "//content/public/common", |
| 488 "//content/renderer:for_content_tests", | 487 "//content/renderer:for_content_tests", |
| 488 "//content/shell/test_runner:test_runner", |
| 489 "//device/bluetooth", | 489 "//device/bluetooth", |
| 490 "//services/ui/public/cpp/gpu", | 490 "//services/ui/public/cpp/gpu", |
| 491 "//skia", | 491 "//skia", |
| 492 "//ui/accessibility:ax_gen", | 492 "//ui/accessibility:ax_gen", |
| 493 "//ui/events/blink", | 493 "//ui/events/blink", |
| 494 "//ui/gfx:test_support", | 494 "//ui/gfx:test_support", |
| 495 "//v8", | 495 "//v8", |
| 496 ] | 496 ] |
| 497 | 497 |
| 498 if (is_android) { | 498 if (is_android) { |
| (...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 if (is_android) { | 1820 if (is_android) { |
| 1821 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1821 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1822 } | 1822 } |
| 1823 } | 1823 } |
| 1824 | 1824 |
| 1825 group("fuzzers") { | 1825 group("fuzzers") { |
| 1826 deps = [ | 1826 deps = [ |
| 1827 "//content/test/fuzzer", | 1827 "//content/test/fuzzer", |
| 1828 ] | 1828 ] |
| 1829 } | 1829 } |
| OLD | NEW |