| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
| 7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| 9 import("//extensions/features/features.gni") | 9 import("//extensions/features/features.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "multi_process_lock.h", | 106 "multi_process_lock.h", |
| 107 "multi_process_lock_linux.cc", | 107 "multi_process_lock_linux.cc", |
| 108 "multi_process_lock_mac.cc", | 108 "multi_process_lock_mac.cc", |
| 109 "multi_process_lock_win.cc", | 109 "multi_process_lock_win.cc", |
| 110 "origin_trials/chrome_origin_trial_policy.cc", | 110 "origin_trials/chrome_origin_trial_policy.cc", |
| 111 "origin_trials/chrome_origin_trial_policy.h", | 111 "origin_trials/chrome_origin_trial_policy.h", |
| 112 "page_load_metrics/page_load_metrics_constants.h", | 112 "page_load_metrics/page_load_metrics_constants.h", |
| 113 "page_load_metrics/page_load_metrics_messages.h", | 113 "page_load_metrics/page_load_metrics_messages.h", |
| 114 "page_load_metrics/page_load_metrics_param_traits.cc", | 114 "page_load_metrics/page_load_metrics_param_traits.cc", |
| 115 "page_load_metrics/page_load_metrics_param_traits.h", | 115 "page_load_metrics/page_load_metrics_param_traits.h", |
| 116 "page_load_metrics/page_load_metrics_util.cc", |
| 117 "page_load_metrics/page_load_metrics_util.h", |
| 116 "page_load_metrics/page_load_timing.cc", | 118 "page_load_metrics/page_load_timing.cc", |
| 117 "page_load_metrics/page_load_timing.h", | 119 "page_load_metrics/page_load_timing.h", |
| 118 "page_load_metrics/page_track_decider.cc", | 120 "page_load_metrics/page_track_decider.cc", |
| 119 "page_load_metrics/page_track_decider.h", | 121 "page_load_metrics/page_track_decider.h", |
| 120 "partial_circular_buffer.cc", | 122 "partial_circular_buffer.cc", |
| 121 "partial_circular_buffer.h", | 123 "partial_circular_buffer.h", |
| 122 "pause_tabs_field_trial.h", | 124 "pause_tabs_field_trial.h", |
| 123 "pdf_uma.cc", | 125 "pdf_uma.cc", |
| 124 "pdf_uma.h", | 126 "pdf_uma.h", |
| 125 "pref_names_util.cc", | 127 "pref_names_util.cc", |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 } | 649 } |
| 648 } | 650 } |
| 649 | 651 |
| 650 # Use a static library here because many test binaries depend on this but don't | 652 # Use a static library here because many test binaries depend on this but don't |
| 651 # require many files from it. This makes linking more efficient. | 653 # require many files from it. This makes linking more efficient. |
| 652 static_library("test_support") { | 654 static_library("test_support") { |
| 653 testonly = true | 655 testonly = true |
| 654 visibility = [ "//chrome/test:*" ] | 656 visibility = [ "//chrome/test:*" ] |
| 655 | 657 |
| 656 sources = [ | 658 sources = [ |
| 659 "page_load_metrics/test/page_load_metrics_test_util.cc", |
| 660 "page_load_metrics/test/page_load_metrics_test_util.h", |
| 657 "search/mock_searchbox.cc", | 661 "search/mock_searchbox.cc", |
| 658 "search/mock_searchbox.h", | 662 "search/mock_searchbox.h", |
| 659 ] | 663 ] |
| 660 | 664 |
| 661 deps = [ | 665 deps = [ |
| 662 ":common", | 666 ":common", |
| 663 ":instant_mojom", | 667 ":instant_mojom", |
| 664 "//base", | 668 "//base", |
| 665 "//testing/gmock", | 669 "//testing/gmock", |
| 666 "//testing/gtest", | 670 "//testing/gtest", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 | 755 |
| 752 mojom("page_load_metrics_mojom") { | 756 mojom("page_load_metrics_mojom") { |
| 753 sources = [ | 757 sources = [ |
| 754 "page_load_metrics/page_load_metrics.mojom", | 758 "page_load_metrics/page_load_metrics.mojom", |
| 755 ] | 759 ] |
| 756 | 760 |
| 757 public_deps = [ | 761 public_deps = [ |
| 758 "//mojo/common:common_custom_types", | 762 "//mojo/common:common_custom_types", |
| 759 ] | 763 ] |
| 760 } | 764 } |
| OLD | NEW |