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

Unified Diff: components/feature_engagement_tracker/BUILD.gn

Issue 2782113002: Add component for feature engagement tracking. (Closed)
Patch Set: Redirect incognito profile to original profile 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..bf8ad79f8e74d5f7ac2ad291d13591ce3c01bfa7
--- /dev/null
+++ b/components/feature_engagement_tracker/BUILD.gn
@@ -0,0 +1,39 @@
+# 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") {
+ visibility = [ "*" ]
brettw 2017/03/30 23:09:48 You don't have to change it if you don't want, but
nyquist 2017/03/30 23:12:47 True. I'll keep it for now to remind myself. If I
+
+ 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") {
+ visibility = [ "*" ]
+
+ 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