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

Unified Diff: components/feature_engagement_tracker/BUILD.gn

Issue 2782113002: Add component for feature engagement tracking. (Closed)
Patch Set: Fix typo in //chrome/android/java/DEPS Created 3 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/BUILD.gn ('k') | components/feature_engagement_tracker/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/feature_engagement_tracker/BUILD.gn
diff --git a/components/feature_engagement_tracker/BUILD.gn b/components/feature_engagement_tracker/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..454c5105ea7f500282d206c4ed1279a9496687f8
--- /dev/null
+++ b/components/feature_engagement_tracker/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2017 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.
+
+if (is_android) {
+ import("//build/config/android/config.gni")
+ import("//build/config/android/rules.gni")
+}
+
+group("feature_engagement_tracker") {
+ public_deps = [
+ "//components/feature_engagement_tracker/public",
+ ]
+
+ deps = [
+ "//components/feature_engagement_tracker/internal",
+ ]
+}
+
+group("unit_tests") {
+ testonly = true
+
+ deps = [
+ "//components/feature_engagement_tracker/internal:unit_tests",
+ ]
+}
+
+if (is_android) {
+ java_group("feature_engagement_tracker_java") {
+ deps = [
+ "//components/feature_engagement_tracker/internal:internal_java",
+ "//components/feature_engagement_tracker/public:public_java",
+ ]
+ }
+}
« no previous file with comments | « components/BUILD.gn ('k') | components/feature_engagement_tracker/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698