| 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") { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "never_condition_validator.cc", | 45 "never_condition_validator.cc", |
| 46 "never_condition_validator.h", | 46 "never_condition_validator.h", |
| 47 "never_storage_validator.cc", | 47 "never_storage_validator.cc", |
| 48 "never_storage_validator.h", | 48 "never_storage_validator.h", |
| 49 "once_condition_validator.cc", | 49 "once_condition_validator.cc", |
| 50 "once_condition_validator.h", | 50 "once_condition_validator.h", |
| 51 "persistent_store.cc", | 51 "persistent_store.cc", |
| 52 "persistent_store.h", | 52 "persistent_store.h", |
| 53 "single_invalid_configuration.cc", | 53 "single_invalid_configuration.cc", |
| 54 "single_invalid_configuration.h", | 54 "single_invalid_configuration.h", |
| 55 "stats.cc", |
| 56 "stats.h", |
| 55 "storage_validator.h", | 57 "storage_validator.h", |
| 56 "store.h", | 58 "store.h", |
| 57 "system_time_provider.cc", | 59 "system_time_provider.cc", |
| 58 "system_time_provider.h", | 60 "system_time_provider.h", |
| 59 "time_provider.h", | 61 "time_provider.h", |
| 60 ] | 62 ] |
| 61 | 63 |
| 62 public_deps = [ | 64 public_deps = [ |
| 63 "//components/feature_engagement_tracker/internal/proto", | 65 "//components/feature_engagement_tracker/internal/proto", |
| 64 ] | 66 ] |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 } | 136 } |
| 135 | 137 |
| 136 generate_jni("jni_headers") { | 138 generate_jni("jni_headers") { |
| 137 visibility = [ ":*" ] | 139 visibility = [ ":*" ] |
| 138 sources = [ | 140 sources = [ |
| 139 "android/java/src/org/chromium/components/feature_engagement_tracker/inter
nal/FeatureEngagementTrackerImpl.java", | 141 "android/java/src/org/chromium/components/feature_engagement_tracker/inter
nal/FeatureEngagementTrackerImpl.java", |
| 140 ] | 142 ] |
| 141 jni_package = "components/feature_engagement_tracker/internal" | 143 jni_package = "components/feature_engagement_tracker/internal" |
| 142 } | 144 } |
| 143 } | 145 } |
| OLD | NEW |