| 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 "pref_names_util.cc", | 125 "pref_names_util.cc", |
| 124 "pref_names_util.h", | 126 "pref_names_util.h", |
| 125 "prerender_messages.h", | 127 "prerender_messages.h", |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 } | 646 } |
| 645 } | 647 } |
| 646 | 648 |
| 647 # Use a static library here because many test binaries depend on this but don't | 649 # Use a static library here because many test binaries depend on this but don't |
| 648 # require many files from it. This makes linking more efficient. | 650 # require many files from it. This makes linking more efficient. |
| 649 static_library("test_support") { | 651 static_library("test_support") { |
| 650 testonly = true | 652 testonly = true |
| 651 visibility = [ "//chrome/test:*" ] | 653 visibility = [ "//chrome/test:*" ] |
| 652 | 654 |
| 653 sources = [ | 655 sources = [ |
| 656 "page_load_metrics/test/page_load_metrics_test_util.cc", |
| 657 "page_load_metrics/test/page_load_metrics_test_util.h", |
| 654 "search/mock_searchbox.cc", | 658 "search/mock_searchbox.cc", |
| 655 "search/mock_searchbox.h", | 659 "search/mock_searchbox.h", |
| 656 ] | 660 ] |
| 657 | 661 |
| 658 deps = [ | 662 deps = [ |
| 659 ":common", | 663 ":common", |
| 660 ":instant_mojom", | 664 ":instant_mojom", |
| 661 "//base", | 665 "//base", |
| 662 "//testing/gmock", | 666 "//testing/gmock", |
| 663 "//testing/gtest", | 667 "//testing/gtest", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 | 752 |
| 749 mojom("page_load_metrics_mojom") { | 753 mojom("page_load_metrics_mojom") { |
| 750 sources = [ | 754 sources = [ |
| 751 "page_load_metrics/page_load_metrics.mojom", | 755 "page_load_metrics/page_load_metrics.mojom", |
| 752 ] | 756 ] |
| 753 | 757 |
| 754 public_deps = [ | 758 public_deps = [ |
| 755 "//mojo/common:common_custom_types", | 759 "//mojo/common:common_custom_types", |
| 756 ] | 760 ] |
| 757 } | 761 } |
| OLD | NEW |