OLD | NEW |
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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 static_library("toolbar") { | 7 static_library("toolbar") { |
8 sources = [ | 8 sources = [ |
9 "toolbar_model.cc", | |
10 "toolbar_model.h", | 9 "toolbar_model.h", |
11 "toolbar_model_delegate.h", | 10 "toolbar_model_delegate.h", |
12 "toolbar_model_impl.cc", | 11 "toolbar_model_impl.cc", |
13 "toolbar_model_impl.h", | 12 "toolbar_model_impl.h", |
14 ] | 13 ] |
15 | 14 |
16 deps = [ | 15 deps = [ |
17 "//base", | 16 "//base", |
18 "//components/google/core/browser", | 17 "//components/google/core/browser", |
19 "//components/prefs", | 18 "//components/prefs", |
(...skipping 21 matching lines...) Expand all Loading... |
41 "//base", | 40 "//base", |
42 "//components/resources", | 41 "//components/resources", |
43 "//ui/gfx", | 42 "//ui/gfx", |
44 ] | 43 ] |
45 | 44 |
46 if (toolkit_views) { | 45 if (toolkit_views) { |
47 # Needed to get the TOOLKIT_VIEWS define. | 46 # Needed to get the TOOLKIT_VIEWS define. |
48 deps += [ "//ui/views" ] | 47 deps += [ "//ui/views" ] |
49 } | 48 } |
50 } | 49 } |
OLD | NEW |