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

Side by Side Diff: components/metrics.gypi

Issue 319523005: Omnibox: Combine Two Input Type Enums into One (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove blank line Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'metrics', 8 'target_name': 'metrics',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ], 71 ],
72 }, 72 },
73 { 73 {
74 # Protobuf compiler / generator for UMA (User Metrics Analysis). 74 # Protobuf compiler / generator for UMA (User Metrics Analysis).
75 'target_name': 'component_metrics_proto', 75 'target_name': 'component_metrics_proto',
76 'type': 'static_library', 76 'type': 'static_library',
77 'sources': [ 77 'sources': [
78 'metrics/proto/chrome_user_metrics_extension.proto', 78 'metrics/proto/chrome_user_metrics_extension.proto',
79 'metrics/proto/histogram_event.proto', 79 'metrics/proto/histogram_event.proto',
80 'metrics/proto/omnibox_event.proto', 80 'metrics/proto/omnibox_event.proto',
81 'metrics/proto/omnibox_input_type.proto',
81 'metrics/proto/perf_data.proto', 82 'metrics/proto/perf_data.proto',
82 'metrics/proto/profiler_event.proto', 83 'metrics/proto/profiler_event.proto',
83 'metrics/proto/sampled_profile.proto', 84 'metrics/proto/sampled_profile.proto',
84 'metrics/proto/system_profile.proto', 85 'metrics/proto/system_profile.proto',
85 'metrics/proto/user_action_event.proto', 86 'metrics/proto/user_action_event.proto',
86 ], 87 ],
87 'variables': { 88 'variables': {
88 'proto_in_dir': 'metrics/proto', 89 'proto_in_dir': 'metrics/proto',
89 'proto_out_dir': 'components/metrics/proto', 90 'proto_out_dir': 'components/metrics/proto',
90 }, 91 },
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'metrics/chromeos/metric_sample.h', 125 'metrics/chromeos/metric_sample.h',
125 ], 126 ],
126 'dependencies': [ 127 'dependencies': [
127 '../base/base.gyp:base', 128 '../base/base.gyp:base',
128 ], 129 ],
129 }, 130 },
130 ], 131 ],
131 }], 132 }],
132 ], 133 ],
133 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698