Chromium Code Reviews| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 455 } | 455 } |
| 456 | 456 |
| 457 if (enable_basic_printing || enable_print_preview) { | 457 if (enable_basic_printing || enable_print_preview) { |
| 458 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] | 458 sources += [ "printing/test/print_web_view_helper_browsertest.cc" ] |
| 459 deps += [ "//components/printing/test:test_support" ] | 459 deps += [ "//components/printing/test:test_support" ] |
| 460 } | 460 } |
| 461 } | 461 } |
| 462 | 462 |
| 463 test("components_perftests") { | 463 test("components_perftests") { |
| 464 sources = [ | 464 sources = [ |
| 465 "omnibox/browser/history_quick_provider_performance_unittest.cc", | |
|
Peter Kasting
2016/10/24 22:28:28
Nit: For cleanliness, it may make sense to have th
dyaroshev
2016/10/25 18:11:34
I looked at cc_perftests
(https://cs.chromium.org/
Peter Kasting
2016/10/25 18:27:56
Right, but cc/ is more of a true monolithic thing,
dyaroshev
2016/10/25 23:06:46
@brettw can you please take a look?
dyaroshev
2016/10/26 22:29:12
Seems like this is the last issue if not counting
brettw
2016/10/27 00:11:53
This could go either way. If we're going to add a
| |
| 465 "test/run_all_perftests.cc", | 466 "test/run_all_perftests.cc", |
| 466 "visitedlink/test/visitedlink_perftest.cc", | 467 "visitedlink/test/visitedlink_perftest.cc", |
| 467 ] | 468 ] |
| 468 | 469 |
| 469 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 470 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 470 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 471 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 471 | 472 |
| 472 deps = [ | 473 deps = [ |
| 473 "//base", | 474 "//base", |
| 475 "//components/history/core/test", | |
| 476 "//components/omnibox/browser", | |
| 477 "//components/omnibox/browser:test_support", | |
| 474 "//components/test:test_support", | 478 "//components/test:test_support", |
| 475 "//components/visitedlink/browser", | 479 "//components/visitedlink/browser", |
| 476 "//testing/perf", | 480 "//testing/perf", |
| 477 "//url", | 481 "//url", |
| 478 ] | 482 ] |
| 479 } | 483 } |
| 480 } | 484 } |
| OLD | NEW |