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 browser targets because //components/html_viewer requires | 5 # We have 2 separate browser targets because //components/html_viewer requires |
6 # startup_metric_utils_browser, but has symbols that conflict with mojo symbols | 6 # startup_metric_utils_browser, but has symbols that conflict with mojo symbols |
7 # that startup_metric_utils_browser_message_filter indirectly depends on. | 7 # that startup_metric_utils_browser_message_filter indirectly depends on. |
8 | 8 |
9 { | 9 { |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 # GN version: //components/startup_metric_utils/browser:lib | 12 # GN version: //components/startup_metric_utils/browser:lib |
13 'target_name': 'startup_metric_utils_browser', | 13 'target_name': 'startup_metric_utils_browser', |
14 'type': 'static_library', | 14 'type': 'static_library', |
15 'dependencies': [ | 15 'dependencies': [ |
16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 17 '../base/base.gyp:base_prefs', |
17 'components.gyp:variations', | 18 'components.gyp:variations', |
18 ], | 19 ], |
19 'include_dirs': [ | 20 'include_dirs': [ |
20 '..', | 21 '..', |
21 ], | 22 ], |
22 'sources': [ | 23 'sources': [ |
23 'startup_metric_utils/browser/pre_read_field_trial_utils_win.cc', | 24 'startup_metric_utils/browser/pre_read_field_trial_utils_win.cc', |
24 'startup_metric_utils/browser/pre_read_field_trial_utils_win.h', | 25 'startup_metric_utils/browser/pre_read_field_trial_utils_win.h', |
25 'startup_metric_utils/browser/startup_metric_utils.cc', | 26 'startup_metric_utils/browser/startup_metric_utils.cc', |
26 'startup_metric_utils/browser/startup_metric_utils.h', | 27 'startup_metric_utils/browser/startup_metric_utils.h', |
(...skipping 29 matching lines...) Expand all Loading... |
56 '..', | 57 '..', |
57 ], | 58 ], |
58 'sources': [ | 59 'sources': [ |
59 'startup_metric_utils/common/startup_metric_message_generator.cc', | 60 'startup_metric_utils/common/startup_metric_message_generator.cc', |
60 'startup_metric_utils/common/startup_metric_message_generator.h', | 61 'startup_metric_utils/common/startup_metric_message_generator.h', |
61 'startup_metric_utils/common/startup_metric_messages.h', | 62 'startup_metric_utils/common/startup_metric_messages.h', |
62 ], | 63 ], |
63 }, | 64 }, |
64 ], | 65 ], |
65 } | 66 } |
OLD | NEW |