Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: components/startup_metric_utils.gypi

Issue 2306443002: Remove GYP files from components. (Closed)
Patch Set: Remove compiled resources Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/ssl_errors.gypi ('k') | components/storage_monitor.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
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_host indirectly depends on.
8
9 {
10 'targets': [
11 {
12 # GN version: //components/startup_metric_utils/browser:lib
13 'target_name': 'startup_metric_utils_browser',
14 'type': 'static_library',
15 'dependencies': [
16 '../base/base.gyp:base',
17 'components.gyp:version_info',
18 'prefs/prefs.gyp:prefs',
19 ],
20 'include_dirs': [
21 '..',
22 ],
23 'sources': [
24 'startup_metric_utils/browser/pref_names.cc',
25 'startup_metric_utils/browser/pref_names.h',
26 'startup_metric_utils/browser/startup_metric_utils.cc',
27 'startup_metric_utils/browser/startup_metric_utils.h',
28 ],
29 },
30 {
31 # GN version: //components/startup_metric_utils/browser:host
32 'target_name': 'startup_metric_utils_browser_host',
33 'type': 'static_library',
34 'dependencies': [
35 '../base/base.gyp:base',
36 '../content/content.gyp:content_browser',
37 'startup_metric_utils_browser',
38 'startup_metric_utils_interfaces'
39 ],
40 'include_dirs': [
41 '..',
42 ],
43 'sources': [
44 'startup_metric_utils/browser/startup_metric_host_impl.cc',
45 'startup_metric_utils/browser/startup_metric_host_impl.h',
46 ],
47 },
48 {
49 # GN version: //components/startup_metric_utils/common:interfaces
50 'target_name': 'startup_metric_utils_interfaces',
51 'type': 'static_library',
52 'sources': [
53 'startup_metric_utils/common/startup_metric.mojom',
54 ],
55 'dependencies': [
56 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_custom_types_mojom',
57 ],
58 'variables': {
59 'mojom_typemaps': [
60 '<(DEPTH)/mojo/common/common_custom_types.typemap',
61 ],
62 'use_new_wrapper_types': 'false',
63 },
64 'includes': [
65 '../mojo/mojom_bindings_generator.gypi',
66 ],
67 },
68 ],
69 'conditions': [
70 ['OS == "win"', {
71 'targets': [
72 {
73 # GN version: //components/startup_metric_utils/common
74 'target_name': 'startup_metric_utils_win',
75 'type': 'static_library',
76 'dependencies': [
77 '../base/base.gyp:base',
78 'components.gyp:variations',
79 ],
80 'include_dirs': [
81 '..',
82 ],
83 'sources': [
84 'startup_metric_utils/common/pre_read_field_trial_utils_win.cc',
85 'startup_metric_utils/common/pre_read_field_trial_utils_win.h',
86 ],
87 },
88 ],
89 }],
90 ],
91 }
OLDNEW
« no previous file with comments | « components/ssl_errors.gypi ('k') | components/storage_monitor.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698