| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 deps = [ | 484 deps = [ |
| 485 ":test_support", | 485 ":test_support", |
| 486 "//cc", | 486 "//cc", |
| 487 "//cc/blink", | 487 "//cc/blink", |
| 488 "//content/browser:for_content_tests", | 488 "//content/browser:for_content_tests", |
| 489 "//content/child:for_content_tests", | 489 "//content/child:for_content_tests", |
| 490 "//content/public/common", | 490 "//content/public/common", |
| 491 "//content/renderer:for_content_tests", | 491 "//content/renderer:for_content_tests", |
| 492 "//content/shell/test_runner:test_runner", | 492 "//content/shell/test_runner:test_runner", |
| 493 "//device/bluetooth", | 493 "//device/bluetooth", |
| 494 "//device/gamepad/public/cpp:shared_with_blink", |
| 494 "//device/sensors/public/cpp:full", | 495 "//device/sensors/public/cpp:full", |
| 495 "//services/ui/public/cpp/gpu", | 496 "//services/ui/public/cpp/gpu", |
| 496 "//skia", | 497 "//skia", |
| 497 "//ui/accessibility:ax_gen", | 498 "//ui/accessibility:ax_gen", |
| 498 "//ui/events/blink", | 499 "//ui/events/blink", |
| 499 "//ui/gfx:test_support", | 500 "//ui/gfx:test_support", |
| 500 "//v8", | 501 "//v8", |
| 501 ] | 502 ] |
| 502 | 503 |
| 503 if (is_android) { | 504 if (is_android) { |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1464 "//content/public/common:service_names", | 1465 "//content/public/common:service_names", |
| 1465 "//content/public/renderer", | 1466 "//content/public/renderer", |
| 1466 "//content/renderer:for_content_tests", | 1467 "//content/renderer:for_content_tests", |
| 1467 "//crypto", | 1468 "//crypto", |
| 1468 "//device/battery", | 1469 "//device/battery", |
| 1469 "//device/battery:mojo_bindings", | 1470 "//device/battery:mojo_bindings", |
| 1470 "//device/bluetooth", | 1471 "//device/bluetooth", |
| 1471 "//device/bluetooth:mocks", | 1472 "//device/bluetooth:mocks", |
| 1472 "//device/gamepad", | 1473 "//device/gamepad", |
| 1473 "//device/gamepad:test_helpers", | 1474 "//device/gamepad:test_helpers", |
| 1475 "//device/gamepad/public/cpp:shared_with_blink", |
| 1474 "//device/sensors/public/cpp:full", | 1476 "//device/sensors/public/cpp:full", |
| 1475 "//device/sensors/public/interfaces", | 1477 "//device/sensors/public/interfaces", |
| 1476 "//gin", | 1478 "//gin", |
| 1477 "//gpu", | 1479 "//gpu", |
| 1478 "//gpu:test_support", | 1480 "//gpu:test_support", |
| 1479 "//gpu/ipc/host", | 1481 "//gpu/ipc/host", |
| 1480 "//ipc:test_support", | 1482 "//ipc:test_support", |
| 1481 "//media:shared_memory_support", | 1483 "//media:shared_memory_support", |
| 1482 "//media:test_support", | 1484 "//media:test_support", |
| 1483 "//media/audio:test_support", | 1485 "//media/audio:test_support", |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1831 if (is_android) { | 1833 if (is_android) { |
| 1832 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1834 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1833 } | 1835 } |
| 1834 } | 1836 } |
| 1835 | 1837 |
| 1836 group("fuzzers") { | 1838 group("fuzzers") { |
| 1837 deps = [ | 1839 deps = [ |
| 1838 "//content/test/fuzzer", | 1840 "//content/test/fuzzer", |
| 1839 ] | 1841 ] |
| 1840 } | 1842 } |
| OLD | NEW |