| 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 source_set("feedback") { | 5 source_set("feedback") { |
| 6 sources = [ | 6 sources = [ |
| 7 "anonymizer_tool.cc", |
| 8 "anonymizer_tool.h", |
| 7 "feedback_common.cc", | 9 "feedback_common.cc", |
| 8 "feedback_common.h", | 10 "feedback_common.h", |
| 9 "feedback_data.cc", | 11 "feedback_data.cc", |
| 10 "feedback_data.h", | 12 "feedback_data.h", |
| 11 "feedback_report.cc", | 13 "feedback_report.cc", |
| 12 "feedback_report.h", | 14 "feedback_report.h", |
| 13 "feedback_switches.cc", | 15 "feedback_switches.cc", |
| 14 "feedback_switches.h", | 16 "feedback_switches.h", |
| 15 "feedback_uploader.cc", | 17 "feedback_uploader.cc", |
| 16 "feedback_uploader.h", | 18 "feedback_uploader.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 | 30 |
| 29 deps = [ | 31 deps = [ |
| 30 "//base", | 32 "//base", |
| 31 "//components/feedback/proto", | 33 "//components/feedback/proto", |
| 32 "//components/keyed_service/content", | 34 "//components/keyed_service/content", |
| 33 "//components/keyed_service/core", | 35 "//components/keyed_service/core", |
| 34 "//components/variations/net", | 36 "//components/variations/net", |
| 35 "//content/public/browser", | 37 "//content/public/browser", |
| 36 "//content/public/common", | 38 "//content/public/common", |
| 37 "//net", | 39 "//net", |
| 40 "//third_party/re2", |
| 38 "//third_party/zlib:zip", | 41 "//third_party/zlib:zip", |
| 39 ] | 42 ] |
| 40 } | 43 } |
| 41 | 44 |
| 42 source_set("unit_tests") { | 45 source_set("unit_tests") { |
| 43 testonly = true | 46 testonly = true |
| 44 sources = [ | 47 sources = [ |
| 48 "anonymizer_tool_unittest.cc", |
| 45 "feedback_common_unittest.cc", | 49 "feedback_common_unittest.cc", |
| 46 "feedback_data_unittest.cc", | 50 "feedback_data_unittest.cc", |
| 47 "feedback_uploader_chrome_unittest.cc", | 51 "feedback_uploader_chrome_unittest.cc", |
| 48 "feedback_uploader_unittest.cc", | 52 "feedback_uploader_unittest.cc", |
| 49 ] | 53 ] |
| 50 deps = [ | 54 deps = [ |
| 51 ":feedback", | 55 ":feedback", |
| 52 "//base", | 56 "//base", |
| 53 "//base:prefs_test_support", | 57 "//base:prefs_test_support", |
| 54 "//components/feedback/proto", | 58 "//components/feedback/proto", |
| 55 "//components/keyed_service/core", | 59 "//components/keyed_service/core", |
| 56 "//components/pref_registry:test_support", | 60 "//components/pref_registry:test_support", |
| 57 "//components/user_prefs", | 61 "//components/user_prefs", |
| 58 "//components/variations/net", | 62 "//components/variations/net", |
| 59 "//content/test:test_support", | 63 "//content/test:test_support", |
| 60 "//net:test_support", | 64 "//net:test_support", |
| 61 "//testing/gmock", | 65 "//testing/gmock", |
| 62 "//testing/gtest", | 66 "//testing/gtest", |
| 63 ] | 67 ] |
| 64 } | 68 } |
| OLD | NEW |