Clean up extension confirmation prompts and make them consistent between Views and...
[chromium-blink-merge.git] / components / bookmarks / managed / BUILD.gn
blob77a9f9eb19e2fcdc8001c6a7a6f97ac415bc0545
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
3 # found in the LICENSE file.
5 source_set("managed") {
6   sources = [
7     "managed_bookmarks_tracker.cc",
8     "managed_bookmarks_tracker.h",
9   ]
11   deps = [
12     "//base",
13     "//base:prefs",
14     "//components/bookmarks/browser",
15     "//components/bookmarks/common",
16     "//components/strings",
17     "//ui/base",
18     "//url",
19   ]
22 source_set("unit_tests") {
23   testonly = true
24   sources = [
25     "managed_bookmarks_tracker_unittest.cc",
26   ]
28   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
30   deps = [
31     ":managed",
32     "//base",
33     "//base:prefs",
34     "//base:prefs_test_support",
35     "//components/bookmarks/browser",
36     "//components/bookmarks/common",
37     "//components/bookmarks/test",
38     "//components/strings",
39     "//testing/gmock",
40     "//testing/gtest",
41     "//ui/base",
42     "//url",
43   ]