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

Side by Side Diff: components/bookmarks/managed/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/bookmarks/browser/BUILD.gn ('k') | components/browser_sync/browser/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("managed") { 5 source_set("managed") {
6 sources = [ 6 sources = [
7 "managed_bookmark_service.cc", 7 "managed_bookmark_service.cc",
8 "managed_bookmark_service.h", 8 "managed_bookmark_service.h",
9 "managed_bookmark_util.cc", 9 "managed_bookmark_util.cc",
10 "managed_bookmark_util.h", 10 "managed_bookmark_util.h",
11 "managed_bookmarks_tracker.cc", 11 "managed_bookmarks_tracker.cc",
12 "managed_bookmarks_tracker.h", 12 "managed_bookmarks_tracker.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//base:prefs",
18 "//components/bookmarks/browser", 17 "//components/bookmarks/browser",
19 "//components/bookmarks/common", 18 "//components/bookmarks/common",
20 "//components/keyed_service/core", 19 "//components/keyed_service/core",
20 "//components/prefs",
21 "//components/strings", 21 "//components/strings",
22 "//ui/base", 22 "//ui/base",
23 "//url", 23 "//url",
24 ] 24 ]
25 } 25 }
26 26
27 source_set("unit_tests") { 27 source_set("unit_tests") {
28 testonly = true 28 testonly = true
29 sources = [ 29 sources = [
30 "managed_bookmarks_tracker_unittest.cc", 30 "managed_bookmarks_tracker_unittest.cc",
31 ] 31 ]
32 32
33 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 33 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
34 34
35 deps = [ 35 deps = [
36 ":managed", 36 ":managed",
37 "//base", 37 "//base",
38 "//base:prefs",
39 "//base:prefs_test_support",
40 "//components/bookmarks/browser", 38 "//components/bookmarks/browser",
41 "//components/bookmarks/common", 39 "//components/bookmarks/common",
42 "//components/bookmarks/test", 40 "//components/bookmarks/test",
41 "//components/prefs:test_support",
43 "//components/strings", 42 "//components/strings",
44 "//testing/gmock", 43 "//testing/gmock",
45 "//testing/gtest", 44 "//testing/gtest",
46 "//ui/base", 45 "//ui/base",
47 "//url", 46 "//url",
48 ] 47 ]
49 } 48 }
OLDNEW
« no previous file with comments | « components/bookmarks/browser/BUILD.gn ('k') | components/browser_sync/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698