| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 "//components/memory_coordinator/browser:unit_tests", | 190 "//components/memory_coordinator/browser:unit_tests", |
| 191 "//components/memory_coordinator/child:unit_tests", | 191 "//components/memory_coordinator/child:unit_tests", |
| 192 "//components/navigation_interception:unit_tests", | 192 "//components/navigation_interception:unit_tests", |
| 193 "//components/network_hints/renderer:unit_tests", | 193 "//components/network_hints/renderer:unit_tests", |
| 194 "//components/packed_ct_ev_whitelist:unit_tests", | 194 "//components/packed_ct_ev_whitelist:unit_tests", |
| 195 "//components/password_manager/content/browser:unit_tests", | 195 "//components/password_manager/content/browser:unit_tests", |
| 196 "//components/power:unit_tests", | 196 "//components/power:unit_tests", |
| 197 "//components/precache/content:unit_tests", | 197 "//components/precache/content:unit_tests", |
| 198 "//components/safe_browsing_db:unit_tests", | 198 "//components/safe_browsing_db:unit_tests", |
| 199 "//components/safe_json:unit_tests", | 199 "//components/safe_json:unit_tests", |
| 200 "//components/scheduler:unit_tests", | |
| 201 "//components/subresource_filter/content/browser:unit_tests", | 200 "//components/subresource_filter/content/browser:unit_tests", |
| 202 "//components/subresource_filter/content/renderer:unit_tests", | 201 "//components/subresource_filter/content/renderer:unit_tests", |
| 203 "//components/test_runner:test_runner", | 202 "//components/test_runner:test_runner", |
| 204 "//components/tracing:unit_tests", | 203 "//components/tracing:unit_tests", |
| 205 "//components/visitedlink/test:unit_tests", | 204 "//components/visitedlink/test:unit_tests", |
| 206 "//components/wallpaper:unit_tests", | 205 "//components/wallpaper:unit_tests", |
| 207 "//components/web_cache/browser:unit_tests", | 206 "//components/web_cache/browser:unit_tests", |
| 208 "//components/webcrypto:unit_tests", | 207 "//components/webcrypto:unit_tests", |
| 209 "//components/zoom:unit_tests", | 208 "//components/zoom:unit_tests", |
| 210 | 209 |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 } | 466 } |
| 468 | 467 |
| 469 if (enable_basic_printing || enable_print_preview) { | 468 if (enable_basic_printing || enable_print_preview) { |
| 470 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 469 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 471 deps += [ "//components/printing/test:test_support" ] | 470 deps += [ "//components/printing/test:test_support" ] |
| 472 } | 471 } |
| 473 } | 472 } |
| 474 | 473 |
| 475 test("components_perftests") { | 474 test("components_perftests") { |
| 476 sources = [ | 475 sources = [ |
| 477 "scheduler/base/task_queue_manager_delegate_for_test.cc", | |
| 478 "scheduler/base/task_queue_manager_delegate_for_test.h", | |
| 479 "scheduler/base/task_queue_manager_perftest.cc", | |
| 480 "scheduler/base/test_task_time_tracker.h", | |
| 481 "visitedlink/test/visitedlink_perftest.cc", | 476 "visitedlink/test/visitedlink_perftest.cc", |
| 482 ] | 477 ] |
| 483 | 478 |
| 484 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 479 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 485 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 480 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 486 | 481 |
| 487 deps = [ | 482 deps = [ |
| 488 "//base", | 483 "//base", |
| 489 "//base/test:test_support", | 484 "//base/test:test_support", |
| 490 "//base/test:test_support_perf", | 485 "//base/test:test_support_perf", |
| 491 "//components/scheduler", | |
| 492 "//components/visitedlink/browser", | 486 "//components/visitedlink/browser", |
| 493 "//content/test:test_support", | 487 "//content/test:test_support", |
| 494 "//testing/gtest", | 488 "//testing/gtest", |
| 495 "//testing/perf", | 489 "//testing/perf", |
| 496 "//url", | 490 "//url", |
| 497 ] | 491 ] |
| 498 } | 492 } |
| 499 } | 493 } |
| OLD | NEW |