OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # GYP version: components/page_load_metrics.gypi:page_load_metrics_browser | 5 # GYP version: components/page_load_metrics.gypi:page_load_metrics_browser |
6 static_library("browser") { | 6 static_library("browser") { |
7 sources = [ | 7 sources = [ |
| 8 "metrics_navigation_throttle.cc", |
| 9 "metrics_navigation_throttle.h", |
8 "metrics_web_contents_observer.cc", | 10 "metrics_web_contents_observer.cc", |
9 "metrics_web_contents_observer.h", | 11 "metrics_web_contents_observer.h", |
10 "page_load_metrics_observer.cc", | 12 "page_load_metrics_observer.cc", |
11 "page_load_metrics_observer.h", | 13 "page_load_metrics_observer.h", |
12 "page_load_metrics_util.cc", | 14 "page_load_metrics_util.cc", |
13 "page_load_metrics_util.h", | 15 "page_load_metrics_util.h", |
14 ] | 16 ] |
15 public_deps = [ | 17 public_deps = [ |
16 "//content/public/browser", | 18 "//content/public/browser", |
17 ] | 19 ] |
(...skipping 18 matching lines...) Expand all Loading... |
36 "//base", | 38 "//base", |
37 "//base/test:test_support", | 39 "//base/test:test_support", |
38 "//components/page_load_metrics/common", | 40 "//components/page_load_metrics/common", |
39 "//components/rappor:test_support", | 41 "//components/rappor:test_support", |
40 "//content/test:test_support", | 42 "//content/test:test_support", |
41 "//net", | 43 "//net", |
42 "//testing/gtest", | 44 "//testing/gtest", |
43 "//third_party/WebKit/public:blink_headers", | 45 "//third_party/WebKit/public:blink_headers", |
44 ] | 46 ] |
45 } | 47 } |
OLD | NEW |