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

Side by Side Diff: components/rappor.gypi

Issue 1014543003: Add an IPC method for Blink to call RapporService::RecordSample() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | components/rappor/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GN version: //components/rappor 8 # GN version: //components/rappor
9 'target_name': 'rappor', 9 'target_name': 'rappor',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 11 matching lines...) Expand all
22 'sources': [ 22 'sources': [
23 # Note: sources list duplicated in GN build. 23 # Note: sources list duplicated in GN build.
24 'rappor/bloom_filter.cc', 24 'rappor/bloom_filter.cc',
25 'rappor/bloom_filter.h', 25 'rappor/bloom_filter.h',
26 'rappor/byte_vector_utils.cc', 26 'rappor/byte_vector_utils.cc',
27 'rappor/byte_vector_utils.h', 27 'rappor/byte_vector_utils.h',
28 'rappor/log_uploader.cc', 28 'rappor/log_uploader.cc',
29 'rappor/log_uploader.h', 29 'rappor/log_uploader.h',
30 'rappor/log_uploader_interface.h', 30 'rappor/log_uploader_interface.h',
31 'rappor/proto/rappor_metric.proto', 31 'rappor/proto/rappor_metric.proto',
32 'rappor/rappor_message_filter.cc',
33 'rappor/rappor_message_filter.h',
32 'rappor/rappor_metric.cc', 34 'rappor/rappor_metric.cc',
33 'rappor/rappor_metric.h', 35 'rappor/rappor_metric.h',
34 'rappor/rappor_parameters.cc', 36 'rappor/rappor_parameters.cc',
35 'rappor/rappor_parameters.h', 37 'rappor/rappor_parameters.h',
36 'rappor/rappor_pref_names.cc', 38 'rappor/rappor_pref_names.cc',
37 'rappor/rappor_pref_names.h', 39 'rappor/rappor_pref_names.h',
38 'rappor/rappor_prefs.cc', 40 'rappor/rappor_prefs.cc',
39 'rappor/rappor_prefs.h', 41 'rappor/rappor_prefs.h',
40 'rappor/rappor_service.cc', 42 'rappor/rappor_service.cc',
41 'rappor/rappor_service.h', 43 'rappor/rappor_service.h',
42 'rappor/rappor_utils.cc', 44 'rappor/rappor_utils.cc',
43 'rappor/rappor_utils.h', 45 'rappor/rappor_utils.h',
44 ], 46 ],
45 'variables': { 47 'variables': {
46 'proto_in_dir': 'rappor/proto', 48 'proto_in_dir': 'rappor/proto',
47 'proto_out_dir': 'components/rappor/proto', 49 'proto_out_dir': 'components/rappor/proto',
48 }, 50 },
49 'includes': [ '../build/protoc.gypi' ], 51 'includes': [ '../build/protoc.gypi' ],
50 }, 52 },
53
51 { 54 {
52 # GN version: //components/rappor:test_support 55 # GN version: //components/rappor:test_support
53 'target_name': 'rappor_test_support', 56 'target_name': 'rappor_test_support',
54 'type': 'static_library', 57 'type': 'static_library',
55 'include_dirs': [ 58 'include_dirs': [
56 '..', 59 '..',
57 ], 60 ],
58 'dependencies': [ 61 'dependencies': [
59 'rappor', 62 'rappor',
60 ], 63 ],
61 'sources': [ 64 'sources': [
62 'rappor/test_log_uploader.cc', 65 'rappor/test_log_uploader.cc',
63 'rappor/test_log_uploader.h', 66 'rappor/test_log_uploader.h',
64 'rappor/test_rappor_service.cc', 67 'rappor/test_rappor_service.cc',
65 'rappor/test_rappor_service.h', 68 'rappor/test_rappor_service.h',
66 ], 69 ],
67 }, 70 },
68 ], 71 ],
69 } 72 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | components/rappor/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698