| 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 { | 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 Loading... |
| 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', |
| 34 'rappor/rappor_messages.cc', |
| 35 'rappor/rappor_messages.h', |
| 32 'rappor/rappor_metric.cc', | 36 'rappor/rappor_metric.cc', |
| 33 'rappor/rappor_metric.h', | 37 'rappor/rappor_metric.h', |
| 34 'rappor/rappor_parameters.cc', | 38 'rappor/rappor_parameters.cc', |
| 35 'rappor/rappor_parameters.h', | 39 'rappor/rappor_parameters.h', |
| 36 'rappor/rappor_pref_names.cc', | 40 'rappor/rappor_pref_names.cc', |
| 37 'rappor/rappor_pref_names.h', | 41 'rappor/rappor_pref_names.h', |
| 38 'rappor/rappor_prefs.cc', | 42 'rappor/rappor_prefs.cc', |
| 39 'rappor/rappor_prefs.h', | 43 'rappor/rappor_prefs.h', |
| 40 'rappor/rappor_service.cc', | 44 'rappor/rappor_service.cc', |
| 41 'rappor/rappor_service.h', | 45 'rappor/rappor_service.h', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 60 ], | 64 ], |
| 61 'sources': [ | 65 'sources': [ |
| 62 'rappor/test_log_uploader.cc', | 66 'rappor/test_log_uploader.cc', |
| 63 'rappor/test_log_uploader.h', | 67 'rappor/test_log_uploader.h', |
| 64 'rappor/test_rappor_service.cc', | 68 'rappor/test_rappor_service.cc', |
| 65 'rappor/test_rappor_service.h', | 69 'rappor/test_rappor_service.h', |
| 66 ], | 70 ], |
| 67 }, | 71 }, |
| 68 ], | 72 ], |
| 69 } | 73 } |
| OLD | NEW |