| 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 # We have 2 separate targets because //components/html_viewer requires :lib, | 5 # We have 2 separate targets because //components/html_viewer requires :lib, |
| 6 # but has symbols that conflict with mojo symbols that :message_filter_lib | 6 # but has symbols that conflict with mojo symbols that :message_filter_lib |
| 7 # indirectly depends on. | 7 # indirectly depends on. |
| 8 | 8 |
| 9 group("browser") { | 9 group("browser") { |
| 10 testonly = true | 10 testonly = true |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 ":host", | 13 ":host", |
| 14 ":lib", | 14 ":lib", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 static_library("lib") { | 18 static_library("lib") { |
| 19 sources = [ | 19 sources = [ |
| 20 "pref_names.cc", | 20 "pref_names.cc", |
| 21 "pref_names.h", | 21 "pref_names.h", |
| 22 "startup_metric_utils.cc", | 22 "startup_metric_utils.cc", |
| 23 "startup_metric_utils.h", | 23 "startup_metric_utils.h", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//components/metrics:metrics", |
| 28 "//components/prefs", | 29 "//components/prefs", |
| 29 "//components/version_info", | 30 "//components/version_info", |
| 30 ] | 31 ] |
| 31 } | 32 } |
| 32 | 33 |
| 33 static_library("host") { | 34 static_library("host") { |
| 34 sources = [ | 35 sources = [ |
| 35 "startup_metric_host_impl.cc", | 36 "startup_metric_host_impl.cc", |
| 36 "startup_metric_host_impl.h", | 37 "startup_metric_host_impl.h", |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 deps = [ | 40 deps = [ |
| 40 ":lib", | 41 ":lib", |
| 41 "//base", | 42 "//base", |
| 43 "//components/metrics:metrics", |
| 42 "//components/startup_metric_utils/common:interfaces", | 44 "//components/startup_metric_utils/common:interfaces", |
| 43 "//content/public/browser", | 45 "//content/public/browser", |
| 44 ] | 46 ] |
| 45 } | 47 } |
| OLD | NEW |