| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 static_library("navigation_metrics") { | 5 static_library("navigation_metrics") { |
| 6 sources = [ | 6 sources = [ |
| 7 "navigation_metrics.cc", | 7 "navigation_metrics.cc", |
| 8 "navigation_metrics.h", | 8 "navigation_metrics.h", |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 deps = [ | 11 deps = [ |
| 12 "//base", | 12 "//base", |
| 13 "//components/dom_distiller/core:core", |
| 13 "//url", | 14 "//url", |
| 14 ] | 15 ] |
| 15 } | 16 } |
| 16 | 17 |
| 17 source_set("unit_tests") { | 18 source_set("unit_tests") { |
| 18 testonly = true | 19 testonly = true |
| 19 sources = [ | 20 sources = [ |
| 20 "navigation_metrics_unittest.cc", | 21 "navigation_metrics_unittest.cc", |
| 21 ] | 22 ] |
| 22 deps = [ | 23 deps = [ |
| 23 ":navigation_metrics", | 24 ":navigation_metrics", |
| 24 "//base/test:test_support", | 25 "//base/test:test_support", |
| 25 "//testing/gtest", | 26 "//testing/gtest", |
| 26 "//url", | 27 "//url", |
| 27 ] | 28 ] |
| 28 } | 29 } |
| OLD | NEW |