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

Side by Side Diff: components/feature_engagement_tracker/internal/BUILD.gn

Issue 2815653003: IPH - connect data saver previews (Closed)
Patch Set: Cleaned up CL a bit Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 static_library("internal") { 10 static_library("internal") {
11 visibility = [ 11 visibility = [
12 ":*", 12 ":*",
13 "//components/feature_engagement_tracker", 13 "//components/feature_engagement_tracker",
14 ] 14 ]
15 15
16 sources = [ 16 sources = [
17 "condition_validator.h", 17 "condition_validator.h",
18 "configuration.cc", 18 "configuration.cc",
19 "configuration.h", 19 "configuration.h",
20 "editable_configuration.cc", 20 "editable_configuration.cc",
21 "editable_configuration.h", 21 "editable_configuration.h",
22 "event_constants.cc",
22 "feature_constants.cc", 23 "feature_constants.cc",
23 "feature_engagement_tracker_impl.cc", 24 "feature_engagement_tracker_impl.cc",
24 "feature_engagement_tracker_impl.h", 25 "feature_engagement_tracker_impl.h",
25 "feature_list.cc", 26 "feature_list.cc",
26 "feature_list.h", 27 "feature_list.h",
27 "in_memory_store.cc", 28 "in_memory_store.cc",
28 "in_memory_store.h", 29 "in_memory_store.h",
29 "model.h", 30 "model.h",
30 "model_impl.cc", 31 "model_impl.cc",
31 "model_impl.h", 32 "model_impl.h",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 95 }
95 96
96 generate_jni("jni_headers") { 97 generate_jni("jni_headers") {
97 visibility = [ ":*" ] 98 visibility = [ ":*" ]
98 sources = [ 99 sources = [
99 "android/java/src/org/chromium/components/feature_engagement_tracker/inter nal/FeatureEngagementTrackerImpl.java", 100 "android/java/src/org/chromium/components/feature_engagement_tracker/inter nal/FeatureEngagementTrackerImpl.java",
100 ] 101 ]
101 jni_package = "components/feature_engagement_tracker/internal" 102 jni_package = "components/feature_engagement_tracker/internal"
102 } 103 }
103 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698