[email protected] | 7a83dd07 | 2013-09-03 12:09:17 | [diff] [blame] | 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 |
| 3 | # found in the LICENSE file. |
| 4 | |
fdoray | 443bd11 | 2015-11-16 20:44:23 | [diff] [blame^] | 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 |
| 7 | # that startup_metric_utils_browser_message_filter indirectly depends on. |
| 8 | |
[email protected] | 7a83dd07 | 2013-09-03 12:09:17 | [diff] [blame] | 9 | { |
| 10 | 'targets': [ |
| 11 | { |
fdoray | 443bd11 | 2015-11-16 20:44:23 | [diff] [blame^] | 12 | # GN version: //components/startup_metric_utils/browser:lib |
fdoray | 45c02c16 | 2015-11-09 20:14:30 | [diff] [blame] | 13 | 'target_name': 'startup_metric_utils_browser', |
[email protected] | 7a83dd07 | 2013-09-03 12:09:17 | [diff] [blame] | 14 | 'type': 'static_library', |
| 15 | 'dependencies': [ |
| 16 | '../base/base.gyp:base', |
| 17 | ], |
| 18 | 'include_dirs': [ |
| 19 | '..', |
| 20 | ], |
| 21 | 'sources': [ |
fdoray | 45c02c16 | 2015-11-09 20:14:30 | [diff] [blame] | 22 | 'startup_metric_utils/browser/startup_metric_utils.cc', |
| 23 | 'startup_metric_utils/browser/startup_metric_utils.h', |
[email protected] | 7a83dd07 | 2013-09-03 12:09:17 | [diff] [blame] | 24 | ], |
| 25 | }, |
fdoray | 443bd11 | 2015-11-16 20:44:23 | [diff] [blame^] | 26 | { |
| 27 | # GN version: //components/startup_metric_utils/browser:message_filter_lib |
| 28 | 'target_name': 'startup_metric_utils_browser_message_filter', |
| 29 | 'type': 'static_library', |
| 30 | 'dependencies': [ |
| 31 | '../base/base.gyp:base', |
| 32 | '../content/content.gyp:content_browser', |
| 33 | 'startup_metric_utils_browser', |
| 34 | 'startup_metric_utils_common', |
| 35 | ], |
| 36 | 'include_dirs': [ |
| 37 | '..', |
| 38 | ], |
| 39 | 'sources': [ |
| 40 | 'startup_metric_utils/browser/startup_metric_message_filter.cc', |
| 41 | 'startup_metric_utils/browser/startup_metric_message_filter.h', |
| 42 | ], |
| 43 | }, |
| 44 | { |
| 45 | # GN version: //components/startup_metric_utils/common |
| 46 | 'target_name': 'startup_metric_utils_common', |
| 47 | 'type': 'static_library', |
| 48 | 'dependencies': [ |
| 49 | '../base/base.gyp:base', |
| 50 | '../ipc/ipc.gyp:ipc', |
| 51 | ], |
| 52 | 'include_dirs': [ |
| 53 | '..', |
| 54 | ], |
| 55 | 'sources': [ |
| 56 | 'startup_metric_utils/common/startup_metric_message_generator.cc', |
| 57 | 'startup_metric_utils/common/startup_metric_message_generator.h', |
| 58 | 'startup_metric_utils/common/startup_metric_messages.h', |
| 59 | ], |
| 60 | }, |
[email protected] | 7a83dd07 | 2013-09-03 12:09:17 | [diff] [blame] | 61 | ], |
| 62 | } |