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

Side by Side Diff: components/metrics.gypi

Issue 239093004: Move part of metrics from chrome/common to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unittest that broke after rebase. Created 6 years, 8 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
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': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'metrics/metrics_hashes.cc', 17 'metrics/metrics_hashes.cc',
18 'metrics/metrics_hashes.h', 18 'metrics/metrics_hashes.h',
19 'metrics/metrics_log_base.cc',
20 'metrics/metrics_log_base.h',
21 'metrics/metrics_log_manager.cc',
22 'metrics/metrics_log_manager.h',
23 'metrics/proto/chrome_user_metrics_extension.proto',
24 'metrics/proto/histogram_event.proto',
25 'metrics/proto/omnibox_event.proto',
26 'metrics/proto/perf_data.proto',
27 'metrics/proto/profiler_event.proto',
28 'metrics/proto/system_profile.proto',
29 'metrics/proto/user_action_event.proto',
Ilya Sherman 2014/04/15 23:00:40 The proto files should be in the proto target, not
19 ], 30 ],
31 'variables': {
32 'proto_in_dir': 'metrics/proto',
33 'proto_out_dir': 'components/metrics/proto',
34 },
35 'includes': [ '../build/protoc.gypi' ],
20 }, 36 },
21 ], 37 ],
22 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698