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 import("//ui/vector_icons/vector_icons.gni") | 6 import("//ui/vector_icons/vector_icons.gni") |
7 | 7 |
8 aggregate_vector_icons("toolbar_vector_icons") { | 8 aggregate_vector_icons("toolbar_vector_icons") { |
9 icon_directory = "vector_icons" | 9 icon_directory = "vector_icons" |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 } | 59 } |
60 | 60 |
61 static_library("test_support") { | 61 static_library("test_support") { |
62 testonly = true | 62 testonly = true |
63 | 63 |
64 sources = [ | 64 sources = [ |
65 "test_toolbar_model.cc", | 65 "test_toolbar_model.cc", |
66 "test_toolbar_model.h", | 66 "test_toolbar_model.h", |
67 ] | 67 ] |
68 | 68 |
69 deps = [ | 69 public_deps = [ |
70 ":toolbar", | 70 ":toolbar", |
71 "//base", | 71 "//base", |
| 72 ] |
| 73 |
| 74 deps = [ |
72 "//components/resources", | 75 "//components/resources", |
73 "//ui/gfx", | 76 "//ui/gfx", |
74 ] | 77 ] |
75 | 78 |
76 if (toolkit_views) { | 79 if (toolkit_views) { |
77 # Needed to get the TOOLKIT_VIEWS define. | 80 # Needed to get the TOOLKIT_VIEWS define. |
78 deps += [ "//ui/views" ] | 81 deps += [ "//ui/views" ] |
79 } | 82 } |
80 } | 83 } |
OLD | NEW |