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

Side by Side Diff: components/rappor.gypi

Issue 845863002: Add stricter tests for RapporService::LoadSecret (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 { 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 17 matching lines...) Expand all
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_metric.cc', 32 'rappor/rappor_metric.cc',
33 'rappor/rappor_metric.h', 33 'rappor/rappor_metric.h',
34 'rappor/rappor_parameters.cc', 34 'rappor/rappor_parameters.cc',
35 'rappor/rappor_parameters.h', 35 'rappor/rappor_parameters.h',
36 'rappor/rappor_pref_names.cc', 36 'rappor/rappor_pref_names.cc',
37 'rappor/rappor_pref_names.h', 37 'rappor/rappor_pref_names.h',
38 'rappor/rappor_prefs.cc',
39 'rappor/rappor_prefs.h',
38 'rappor/rappor_service.cc', 40 'rappor/rappor_service.cc',
39 'rappor/rappor_service.h', 41 'rappor/rappor_service.h',
40 ], 42 ],
41 'variables': { 43 'variables': {
42 'proto_in_dir': 'rappor/proto', 44 'proto_in_dir': 'rappor/proto',
43 'proto_out_dir': 'components/rappor/proto', 45 'proto_out_dir': 'components/rappor/proto',
44 }, 46 },
45 'includes': [ '../build/protoc.gypi' ], 47 'includes': [ '../build/protoc.gypi' ],
46 }, 48 },
47 { 49 {
48 # GN version: //components/rappor:test_support 50 # GN version: //components/rappor:test_support
49 'target_name': 'rappor_test_support', 51 'target_name': 'rappor_test_support',
50 'type': 'static_library', 52 'type': 'static_library',
51 'include_dirs': [ 53 'include_dirs': [
52 '..', 54 '..',
53 ], 55 ],
54 'dependencies': [ 56 'dependencies': [
55 'rappor', 57 'rappor',
56 ], 58 ],
57 'sources': [ 59 'sources': [
58 'rappor/test_log_uploader.cc', 60 'rappor/test_log_uploader.cc',
59 'rappor/test_log_uploader.h', 61 'rappor/test_log_uploader.h',
60 'rappor/test_rappor_service.cc', 62 'rappor/test_rappor_service.cc',
61 'rappor/test_rappor_service.h', 63 'rappor/test_rappor_service.h',
62 ], 64 ],
63 }, 65 },
64 ], 66 ],
65 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698