Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: components/feedback/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "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 10 matching lines...) Expand all
21 "feedback_uploader_factory.cc", 21 "feedback_uploader_factory.cc",
22 "feedback_uploader_factory.h", 22 "feedback_uploader_factory.h",
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/feedback/proto",
32 "//components/keyed_service/content",
31 "//components/keyed_service/core", 33 "//components/keyed_service/core",
32 "//components/keyed_service/content",
33 "//components/feedback/proto",
34 "//components/variations/net", 34 "//components/variations/net",
35 "//content/public/browser", 35 "//content/public/browser",
36 "//content/public/common", 36 "//content/public/common",
37 "//net", 37 "//net",
38 "//third_party/zlib:zip", 38 "//third_party/zlib:zip",
39 ] 39 ]
40 } 40 }
41 41
42 source_set("unit_tests") { 42 source_set("unit_tests") {
43 testonly = true 43 testonly = true
(...skipping 11 matching lines...) Expand all
55 "//components/keyed_service/core", 55 "//components/keyed_service/core",
56 "//components/pref_registry:test_support", 56 "//components/pref_registry:test_support",
57 "//components/user_prefs", 57 "//components/user_prefs",
58 "//components/variations/net", 58 "//components/variations/net",
59 "//content/test:test_support", 59 "//content/test:test_support",
60 "//net:test_support", 60 "//net:test_support",
61 "//testing/gmock", 61 "//testing/gmock",
62 "//testing/gtest", 62 "//testing/gtest",
63 ] 63 ]
64 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698