OLD | NEW |
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 # GYP version: components/rappor.gypi:rappor | 5 # GYP version: components/rappor.gypi:rappor |
6 static_library("rappor") { | 6 static_library("rappor") { |
7 sources = [ | 7 sources = [ |
8 "bloom_filter.cc", | 8 "bloom_filter.cc", |
9 "bloom_filter.h", | 9 "bloom_filter.h", |
10 "byte_vector_utils.cc", | 10 "byte_vector_utils.cc", |
11 "byte_vector_utils.h", | 11 "byte_vector_utils.h", |
12 "log_uploader.cc", | 12 "log_uploader.cc", |
13 "log_uploader.h", | 13 "log_uploader.h", |
14 "log_uploader_interface.h", | 14 "log_uploader_interface.h", |
| 15 "rappor_message_filter.cc", |
| 16 "rappor_message_filter.h", |
| 17 "rappor_messages.cc", |
| 18 "rappor_messages.h", |
15 "rappor_metric.cc", | 19 "rappor_metric.cc", |
16 "rappor_metric.h", | 20 "rappor_metric.h", |
17 "rappor_parameters.cc", | 21 "rappor_parameters.cc", |
18 "rappor_parameters.h", | 22 "rappor_parameters.h", |
19 "rappor_pref_names.cc", | 23 "rappor_pref_names.cc", |
20 "rappor_pref_names.h", | 24 "rappor_pref_names.h", |
21 "rappor_prefs.cc", | 25 "rappor_prefs.cc", |
22 "rappor_prefs.h", | 26 "rappor_prefs.h", |
23 "rappor_service.cc", | 27 "rappor_service.cc", |
24 "rappor_service.h", | 28 "rappor_service.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "rappor_utils_unittest.cc", | 69 "rappor_utils_unittest.cc", |
66 ] | 70 ] |
67 | 71 |
68 deps = [ | 72 deps = [ |
69 ":rappor", | 73 ":rappor", |
70 "//base/test:test_support", | 74 "//base/test:test_support", |
71 "//components/rappor/proto", | 75 "//components/rappor/proto", |
72 "//testing/gtest", | 76 "//testing/gtest", |
73 ] | 77 ] |
74 } | 78 } |
OLD | NEW |