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

Side by Side Diff: components/BUILD.gn

Issue 1312213010: PageLoadMetrics renderer and browser implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Instrumented NavigationHandle for IsSamePage, fixed broken logic and tests Created 5 years, 3 months 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
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 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 ] 250 ]
251 } 251 }
252 252
253 if (!is_ios) { 253 if (!is_ios) {
254 deps += [ 254 deps += [
255 "//components/app_modal", 255 "//components/app_modal",
256 "//components/browsing_data", 256 "//components/browsing_data",
257 "//components/guest_view/browser", 257 "//components/guest_view/browser",
258 "//components/guest_view/common", 258 "//components/guest_view/common",
259 "//components/guest_view/renderer", 259 "//components/guest_view/renderer",
260 "//components/page_load_metrics/browser",
261 "//components/page_load_metrics/common",
262 "//components/page_load_metrics/renderer",
260 "//components/safe_json", 263 "//components/safe_json",
261 "//components/scheduler", 264 "//components/scheduler",
262 "//components/test_runner", 265 "//components/test_runner",
263 ] 266 ]
264 } 267 }
265 268
266 if (toolkit_views) { 269 if (toolkit_views) {
267 deps += [ "//components/constrained_window" ] 270 deps += [ "//components/constrained_window" ]
268 } 271 }
269 } 272 }
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 if (is_ios) { 453 if (is_ios) {
451 deps += [ "//components/signin/core/browser:unit_tests" ] 454 deps += [ "//components/signin/core/browser:unit_tests" ]
452 deps -= [ "//components/devtools_http_handler:unit_tests" ] 455 deps -= [ "//components/devtools_http_handler:unit_tests" ]
453 } else { 456 } else {
454 # Non-iOS tests. 457 # Non-iOS tests.
455 deps += [ 458 deps += [
456 "//components/error_page/renderer:unit_tests", 459 "//components/error_page/renderer:unit_tests",
457 "//components/guest_view/browser:unit_tests", 460 "//components/guest_view/browser:unit_tests",
458 "//components/navigation_interception:unit_tests", 461 "//components/navigation_interception:unit_tests",
459 "//components/network_hints/renderer:unit_tests", 462 "//components/network_hints/renderer:unit_tests",
463 "//components/page_load_metrics/browser:unit_tests",
464 "//components/page_load_metrics/renderer:unit_tests",
460 "//components/power:unit_tests", 465 "//components/power:unit_tests",
461 "//components/safe_json:unit_tests", 466 "//components/safe_json:unit_tests",
462 "//components/scheduler:unit_tests", 467 "//components/scheduler:unit_tests",
463 "//components/ui/zoom:unit_tests", 468 "//components/ui/zoom:unit_tests",
464 "//components/visitedlink/test:unit_tests", 469 "//components/visitedlink/test:unit_tests",
465 "//components/web_cache/browser:unit_tests", 470 "//components/web_cache/browser:unit_tests",
466 ] 471 ]
467 } 472 }
468 473
469 if (enable_basic_printing || enable_print_preview) { 474 if (enable_basic_printing || enable_print_preview) {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 593
589 deps = [ 594 deps = [
590 "//base", 595 "//base",
591 "//base/test:test_support_perf", 596 "//base/test:test_support_perf",
592 "//testing/gtest", 597 "//testing/gtest",
593 "//testing/perf", 598 "//testing/perf",
594 "//content/test:test_support", 599 "//content/test:test_support",
595 "//components/visitedlink/browser", 600 "//components/visitedlink/browser",
596 ] 601 ]
597 } 602 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698