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

Side by Side Diff: components/metrics/proto/BUILD.gn

Issue 2567263003: Basic UkmService implementation (Closed)
Patch Set: Proto and client_id Created 3 years, 11 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 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 proto_library("proto") { 7 proto_library("proto") {
8 sources = [ 8 sources = [
9 "call_stack_profile.proto", 9 "call_stack_profile.proto",
10 "cast_logs.proto", 10 "cast_logs.proto",
11 "chrome_user_metrics_extension.proto", 11 "chrome_user_metrics_extension.proto",
12 "execution_context.proto", 12 "execution_context.proto",
13 "histogram_event.proto", 13 "histogram_event.proto",
14 "memory_leak_report.proto", 14 "memory_leak_report.proto",
15 "omnibox_event.proto", 15 "omnibox_event.proto",
16 "omnibox_input_type.proto", 16 "omnibox_input_type.proto",
17 "perf_data.proto", 17 "perf_data.proto",
18 "perf_stat.proto", 18 "perf_stat.proto",
19 "profiler_event.proto", 19 "profiler_event.proto",
20 "sampled_profile.proto", 20 "sampled_profile.proto",
21 "system_profile.proto", 21 "system_profile.proto",
22 "translate_event.proto", 22 "translate_event.proto",
23 "ukm/report.proto",
24 "ukm/source.proto",
23 "user_action_event.proto", 25 "user_action_event.proto",
24 ] 26 ]
27 proto_in_dir = "."
25 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698