| 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 static_library("feedback") { | 5 static_library("feedback") { |
| 6 sources = [ | 6 sources = [ |
| 7 "anonymizer_tool.cc", | 7 "anonymizer_tool.cc", |
| 8 "anonymizer_tool.h", | 8 "anonymizer_tool.h", |
| 9 "feedback_common.cc", | 9 "feedback_common.cc", |
| 10 "feedback_common.h", | 10 "feedback_common.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "feedback_uploader_factory.cc", | 23 "feedback_uploader_factory.cc", |
| 24 "feedback_uploader_factory.h", | 24 "feedback_uploader_factory.h", |
| 25 "feedback_util.cc", | 25 "feedback_util.cc", |
| 26 "feedback_util.h", | 26 "feedback_util.h", |
| 27 "tracing_manager.cc", | 27 "tracing_manager.cc", |
| 28 "tracing_manager.h", | 28 "tracing_manager.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//components/data_use_measurement/core", |
| 33 "//components/feedback/proto", | 34 "//components/feedback/proto", |
| 34 "//components/keyed_service/content", | 35 "//components/keyed_service/content", |
| 35 "//components/keyed_service/core", | 36 "//components/keyed_service/core", |
| 36 "//components/variations/net", | 37 "//components/variations/net", |
| 37 "//content/public/browser", | 38 "//content/public/browser", |
| 38 "//content/public/common", | 39 "//content/public/common", |
| 39 "//net", | 40 "//net", |
| 40 "//third_party/re2", | 41 "//third_party/re2", |
| 41 "//third_party/zlib:zip", | 42 "//third_party/zlib:zip", |
| 42 ] | 43 ] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 59 "//components/pref_registry:test_support", | 60 "//components/pref_registry:test_support", |
| 60 "//components/prefs:test_support", | 61 "//components/prefs:test_support", |
| 61 "//components/user_prefs", | 62 "//components/user_prefs", |
| 62 "//components/variations/net", | 63 "//components/variations/net", |
| 63 "//content/test:test_support", | 64 "//content/test:test_support", |
| 64 "//net:test_support", | 65 "//net:test_support", |
| 65 "//testing/gmock", | 66 "//testing/gmock", |
| 66 "//testing/gtest", | 67 "//testing/gtest", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| OLD | NEW |