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

Side by Side Diff: components/BUILD.gn

Issue 2876633002: Add a PersistentStore to FeatureEngagementTracker (Closed)
Patch Set: Rebased and fleshed out test Created 3 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//rlz/features/features.gni") 9 import("//rlz/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 } # iOS/!iOS 235 } # iOS/!iOS
236 236
237 if (is_ios) { 237 if (is_ios) {
238 deps += [ ":components_tests_pak_bundle_data" ] 238 deps += [ ":components_tests_pak_bundle_data" ]
239 } 239 }
240 240
241 if (is_mac || is_linux) { 241 if (is_mac || is_linux) {
242 data_deps += [ "//content/shell:pak" ] 242 data_deps += [ "//content/shell:pak" ]
243 } 243 }
244 244
245 deps += [ "//components/feature_engagement_tracker:unit_tests" ]
nyquist 2017/05/11 17:08:03 Hey, this looks just like the local edit I always
David Trainor- moved to gerrit 2017/05/11 19:30:28 O_o
246
245 if (is_android) { 247 if (is_android) {
246 deps += [ 248 deps += [
247 "//components/cdm/browser:unit_tests", 249 "//components/cdm/browser:unit_tests",
248 "//components/feature_engagement_tracker:unit_tests", 250 "//components/feature_engagement_tracker:unit_tests",
249 "//components/gcm_driver/instance_id:test_support", 251 "//components/gcm_driver/instance_id:test_support",
250 "//components/gcm_driver/instance_id/android:instance_id_driver_java", 252 "//components/gcm_driver/instance_id/android:instance_id_driver_java",
251 "//components/gcm_driver/instance_id/android:instance_id_driver_test_suppo rt_java", 253 "//components/gcm_driver/instance_id/android:instance_id_driver_test_suppo rt_java",
252 "//components/invalidation/impl", 254 "//components/invalidation/impl",
253 "//components/invalidation/impl:java", 255 "//components/invalidation/impl:java",
254 "//components/payments/android:unit_tests", 256 "//components/payments/android:unit_tests",
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 "//testing/perf", 508 "//testing/perf",
507 "//url", 509 "//url",
508 ] 510 ]
509 511
510 if (!is_ios) { 512 if (!is_ios) {
511 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ] 513 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ]
512 deps += [ "//components/discardable_memory/common" ] 514 deps += [ "//components/discardable_memory/common" ]
513 } 515 }
514 } 516 }
515 } 517 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698