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

Side by Side Diff: components/user_prefs/tracked/BUILD.gn

Issue 1652573002: Update GN build files for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@presf_move
Patch Set: Created 4 years, 10 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
« no previous file with comments | « components/user_prefs/BUILD.gn ('k') | components/variations/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 static_library("user_prefs_tracked") { 5 static_library("user_prefs_tracked") {
6 sources = [ 6 sources = [
7 "device_id.h", 7 "device_id.h",
8 "device_id_mac.cc", 8 "device_id_mac.cc",
9 "device_id_stub.cc", 9 "device_id_stub.cc",
10 "device_id_win.cc", 10 "device_id_win.cc",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 if (is_ios) { 48 if (is_ios) {
49 sources -= [ "device_id_mac.cc" ] 49 sources -= [ "device_id_mac.cc" ]
50 } 50 }
51 51
52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
54 54
55 deps = [ 55 deps = [
56 "//base:base", 56 "//base:base",
57 "//base:prefs",
58 "//components/pref_registry", 57 "//components/pref_registry",
58 "//components/prefs",
59 "//crypto:crypto", 59 "//crypto:crypto",
60 ] 60 ]
61 } 61 }
62 62
63 source_set("user_prefs_tracked_test_support") { 63 source_set("user_prefs_tracked_test_support") {
64 testonly = true 64 testonly = true
65 sources = [ 65 sources = [
66 "mock_validation_delegate.cc", 66 "mock_validation_delegate.cc",
67 "mock_validation_delegate.h", 67 "mock_validation_delegate.h",
68 ] 68 ]
(...skipping 13 matching lines...) Expand all
82 "pref_hash_store_impl_unittest.cc", 82 "pref_hash_store_impl_unittest.cc",
83 "pref_service_hash_store_contents_unittest.cc", 83 "pref_service_hash_store_contents_unittest.cc",
84 "segregated_pref_store_unittest.cc", 84 "segregated_pref_store_unittest.cc",
85 "tracked_preferences_migration_unittest.cc", 85 "tracked_preferences_migration_unittest.cc",
86 ] 86 ]
87 87
88 deps = [ 88 deps = [
89 ":user_prefs_tracked", 89 ":user_prefs_tracked",
90 ":user_prefs_tracked_test_support", 90 ":user_prefs_tracked_test_support",
91 "//base:base", 91 "//base:base",
92 "//base:prefs", 92 "//components/prefs:test_support",
93 "//base:prefs_test_support",
94 "//testing/gtest", 93 "//testing/gtest",
95 ] 94 ]
96 } 95 }
OLDNEW
« no previous file with comments | « components/user_prefs/BUILD.gn ('k') | components/variations/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698