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("browser") { | 7 source_set("browser") { |
8 sources = [ | 8 sources = [ |
9 "base_bookmark_model_observer.cc", | 9 "base_bookmark_model_observer.cc", |
10 "base_bookmark_model_observer.h", | 10 "base_bookmark_model_observer.h", |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "//components/bookmarks/common", | 103 "//components/bookmarks/common", |
104 "//components/bookmarks/test", | 104 "//components/bookmarks/test", |
105 "//components/favicon_base", | 105 "//components/favicon_base", |
106 "//components/pref_registry", | 106 "//components/pref_registry", |
107 "//components/prefs", | 107 "//components/prefs", |
108 "//components/prefs:test_support", | 108 "//components/prefs:test_support", |
109 "//testing/gtest", | 109 "//testing/gtest", |
110 "//ui/base", | 110 "//ui/base", |
111 "//url", | 111 "//url", |
112 ] | 112 ] |
| 113 |
| 114 if (use_x11) { |
| 115 deps += [ |
| 116 "//ui/events/platform/x11", |
| 117 "//ui/gfx/x", |
| 118 ] |
| 119 } |
113 } | 120 } |
OLD | NEW |