| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |