| 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:version_info', | 18 'components.gyp:version_info', |
| 18 'prefs/prefs.gyp:prefs', | |
| 19 ], | 19 ], |
| 20 'include_dirs': [ | 20 'include_dirs': [ |
| 21 '..', | 21 '..', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'startup_metric_utils/browser/pref_names.cc', | 24 'startup_metric_utils/browser/pref_names.cc', |
| 25 'startup_metric_utils/browser/pref_names.h', | 25 'startup_metric_utils/browser/pref_names.h', |
| 26 'startup_metric_utils/browser/startup_metric_utils.cc', | 26 'startup_metric_utils/browser/startup_metric_utils.cc', |
| 27 'startup_metric_utils/browser/startup_metric_utils.h', | 27 'startup_metric_utils/browser/startup_metric_utils.h', |
| 28 ], | 28 ], |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'sources': [ | 60 'sources': [ |
| 61 'startup_metric_utils/common/pre_read_field_trial_utils_win.cc', | 61 'startup_metric_utils/common/pre_read_field_trial_utils_win.cc', |
| 62 'startup_metric_utils/common/pre_read_field_trial_utils_win.h', | 62 'startup_metric_utils/common/pre_read_field_trial_utils_win.h', |
| 63 'startup_metric_utils/common/startup_metric_message_generator.cc', | 63 'startup_metric_utils/common/startup_metric_message_generator.cc', |
| 64 'startup_metric_utils/common/startup_metric_message_generator.h', | 64 'startup_metric_utils/common/startup_metric_message_generator.h', |
| 65 'startup_metric_utils/common/startup_metric_messages.h', | 65 'startup_metric_utils/common/startup_metric_messages.h', |
| 66 ], | 66 ], |
| 67 }, | 67 }, |
| 68 ], | 68 ], |
| 69 } | 69 } |
| OLD | NEW |