Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Side by Side Diff: components/BUILD.gn

Issue 2300323003: Adding performance tests for HQP that represent importance of optimising HistoryItemsForTerms method (Closed)
Patch Set: Review, round 4. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/history/core/browser/history_database.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
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 }
OLDNEW
« no previous file with comments | « no previous file | components/history/core/browser/history_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698