OLD | NEW |
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/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 source_set("test") { | 7 source_set("test") { |
8 testonly = true | 8 testonly = true |
9 sources = [ | 9 sources = [ |
10 "bookmark_test_helpers.cc", | 10 "bookmark_test_helpers.cc", |
11 "bookmark_test_helpers.h", | 11 "bookmark_test_helpers.h", |
12 "mock_bookmark_model_observer.cc", | 12 "mock_bookmark_model_observer.cc", |
13 "mock_bookmark_model_observer.h", | 13 "mock_bookmark_model_observer.h", |
14 "test_bookmark_client.cc", | 14 "test_bookmark_client.cc", |
15 "test_bookmark_client.h", | 15 "test_bookmark_client.h", |
16 ] | 16 ] |
17 | 17 |
18 deps = [ | 18 deps = [ |
19 "//base", | 19 "//base", |
20 "//components/bookmarks/browser", | 20 "//components/bookmarks/browser", |
21 "//testing/gmock", | 21 "//testing/gmock", |
22 "//ui/events/platform", | 22 "//ui/events/platform", |
23 "//url", | 23 "//url", |
24 ] | 24 ] |
25 | 25 |
26 if (use_x11) { | 26 if (use_x11) { |
27 deps += [ | 27 deps += [ "//ui/events/platform/x11" ] |
28 "//ui/events/platform/x11", | |
29 ] | |
30 } | 28 } |
31 } | 29 } |
OLD | NEW |