| 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 476 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 477 deps += [ "//components/printing/test:test_support" ] | 477 deps += [ "//components/printing/test:test_support" ] |
| 478 } | 478 } |
| 479 } | 479 } |
| 480 | 480 |
| 481 test("components_perftests") { | 481 test("components_perftests") { |
| 482 sources = [ | 482 sources = [ |
| 483 "scheduler/base/task_queue_manager_delegate_for_test.cc", | 483 "scheduler/base/task_queue_manager_delegate_for_test.cc", |
| 484 "scheduler/base/task_queue_manager_delegate_for_test.h", | 484 "scheduler/base/task_queue_manager_delegate_for_test.h", |
| 485 "scheduler/base/task_queue_manager_perftest.cc", | 485 "scheduler/base/task_queue_manager_perftest.cc", |
| 486 "scheduler/base/test_task_time_tracker.h", |
| 486 "visitedlink/test/visitedlink_perftest.cc", | 487 "visitedlink/test/visitedlink_perftest.cc", |
| 487 ] | 488 ] |
| 488 | 489 |
| 489 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 490 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 490 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 491 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 491 | 492 |
| 492 deps = [ | 493 deps = [ |
| 493 "//base", | 494 "//base", |
| 494 "//base/test:test_support", | 495 "//base/test:test_support", |
| 495 "//base/test:test_support_perf", | 496 "//base/test:test_support_perf", |
| 496 "//components/scheduler", | 497 "//components/scheduler", |
| 497 "//components/visitedlink/browser", | 498 "//components/visitedlink/browser", |
| 498 "//content/test:test_support", | 499 "//content/test:test_support", |
| 499 "//testing/gtest", | 500 "//testing/gtest", |
| 500 "//testing/perf", | 501 "//testing/perf", |
| 501 "//url", | 502 "//url", |
| 502 ] | 503 ] |
| 503 } | 504 } |
| 504 } | 505 } |
| OLD | NEW |