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 "feedback_common.cc", | 7 "feedback_common.cc", |
8 "feedback_common.h", | 8 "feedback_common.h", |
9 "feedback_data.cc", | 9 "feedback_data.cc", |
10 "feedback_data.h", | 10 "feedback_data.h", |
(...skipping 12 matching lines...) Expand all Loading... |
23 "feedback_util.cc", | 23 "feedback_util.cc", |
24 "feedback_util.h", | 24 "feedback_util.h", |
25 "tracing_manager.cc", | 25 "tracing_manager.cc", |
26 "tracing_manager.h", | 26 "tracing_manager.h", |
27 ] | 27 ] |
28 | 28 |
29 deps = [ | 29 deps = [ |
30 "//base", | 30 "//base", |
31 "//components/keyed_service/core:core", | 31 "//components/keyed_service/core:core", |
32 "//components/feedback/proto", | 32 "//components/feedback/proto", |
| 33 "//components/variations/net", |
33 "//content/public/common", | 34 "//content/public/common", |
34 "//net", | 35 "//net", |
35 "//third_party/zlib:zip", | 36 "//third_party/zlib:zip", |
36 ] | 37 ] |
37 } | 38 } |
OLD | NEW |