summaryrefslogtreecommitdiffstats
path: root/components/feedback
diff options
context:
space:
mode:
Diffstat (limited to 'components/feedback')
-rw-r--r--components/feedback/BUILD.gn37
-rw-r--r--components/feedback/proto/BUILD.gn18
2 files changed, 55 insertions, 0 deletions
diff --git a/components/feedback/BUILD.gn b/components/feedback/BUILD.gn
new file mode 100644
index 0000000..aa8c864
--- /dev/null
+++ b/components/feedback/BUILD.gn
@@ -0,0 +1,37 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("feedback") {
+ sources = [
+ "feedback_common.cc",
+ "feedback_common.h",
+ "feedback_data.cc",
+ "feedback_data.h",
+ "feedback_report.cc",
+ "feedback_report.h",
+ "feedback_switches.cc",
+ "feedback_switches.h",
+ "feedback_uploader.cc",
+ "feedback_uploader.h",
+ "feedback_uploader_chrome.cc",
+ "feedback_uploader_chrome.h",
+ "feedback_uploader_delegate.cc",
+ "feedback_uploader_delegate.h",
+ "feedback_uploader_factory.cc",
+ "feedback_uploader_factory.h",
+ "feedback_util.cc",
+ "feedback_util.h",
+ "tracing_manager.cc",
+ "tracing_manager.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/keyed_service/core:core",
+ "//components/feedback/proto",
+ "//content/public/common",
+ "//net",
+ "//third_party/zlib:zip",
+ ]
+}
diff --git a/components/feedback/proto/BUILD.gn b/components/feedback/proto/BUILD.gn
new file mode 100644
index 0000000..15da2c0
--- /dev/null
+++ b/components/feedback/proto/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//third_party/protobuf/proto_library.gni")
+
+# GYP version: components/feedback.gypi:feedback_proto
+proto_library("proto") {
+ sources = [
+ "annotations.proto",
+ "chrome.proto",
+ "common.proto",
+ "dom.proto",
+ "extension.proto",
+ "math.proto",
+ "web.proto",
+ ]
+}