| 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 ":lib", | 13 ":lib", |
| 14 ":message_filter_lib", | 14 ":message_filter_lib", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 source_set("lib") { | 18 source_set("lib") { |
| 19 sources = [ | 19 sources = [ |
| 20 "pre_read_field_trial_utils_win.cc", | |
| 21 "pre_read_field_trial_utils_win.h", | |
| 22 "startup_metric_utils.cc", | 20 "startup_metric_utils.cc", |
| 23 "startup_metric_utils.h", | 21 "startup_metric_utils.h", |
| 24 ] | 22 ] |
| 25 | 23 |
| 26 deps = [ | 24 deps = [ |
| 27 "//base", | 25 "//base", |
| 28 "//base:prefs", | 26 "//base:prefs", |
| 29 "//components/variations", | |
| 30 ] | 27 ] |
| 31 } | 28 } |
| 32 | 29 |
| 33 source_set("message_filter_lib") { | 30 source_set("message_filter_lib") { |
| 34 sources = [ | 31 sources = [ |
| 35 "startup_metric_message_filter.cc", | 32 "startup_metric_message_filter.cc", |
| 36 "startup_metric_message_filter.h", | 33 "startup_metric_message_filter.h", |
| 37 ] | 34 ] |
| 38 | 35 |
| 39 deps = [ | 36 deps = [ |
| 40 ":lib", | 37 ":lib", |
| 41 "//base", | 38 "//base", |
| 42 "//components/startup_metric_utils/common", | 39 "//components/startup_metric_utils/common", |
| 43 "//content/public/browser", | 40 "//content/public/browser", |
| 44 ] | 41 ] |
| 45 } | 42 } |
| OLD | NEW |