| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "//components/google/core/browser", | 52 "//components/google/core/browser", |
| 53 "//components/prefs", | 53 "//components/prefs", |
| 54 "//components/resources", | 54 "//components/resources", |
| 55 "//components/strings", | 55 "//components/strings", |
| 56 "//components/url_formatter", | 56 "//components/url_formatter", |
| 57 "//net", | 57 "//net", |
| 58 "//ui/base", | 58 "//ui/base", |
| 59 "//ui/gfx", | 59 "//ui/gfx", |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 if (!is_android && !is_ios) { | 62 if (!is_ios) { |
| 63 deps += [ ":vector_icons" ] | 63 deps += [ ":vector_icons" ] |
| 64 } | 64 } |
| 65 } | 65 } |
| 66 | 66 |
| 67 static_library("test_support") { | 67 static_library("test_support") { |
| 68 testonly = true | 68 testonly = true |
| 69 | 69 |
| 70 sources = [ | 70 sources = [ |
| 71 "test_toolbar_model.cc", | 71 "test_toolbar_model.cc", |
| 72 "test_toolbar_model.h", | 72 "test_toolbar_model.h", |
| 73 ] | 73 ] |
| 74 | 74 |
| 75 public_deps = [ | 75 public_deps = [ |
| 76 ":toolbar", | 76 ":toolbar", |
| 77 "//base", | 77 "//base", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 deps = [ | 80 deps = [ |
| 81 "//components/resources", | 81 "//components/resources", |
| 82 "//ui/gfx", | 82 "//ui/gfx", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 if (toolkit_views) { | 85 if (toolkit_views) { |
| 86 # Needed to get the TOOLKIT_VIEWS define. | 86 # Needed to get the TOOLKIT_VIEWS define. |
| 87 deps += [ "//ui/views" ] | 87 deps += [ "//ui/views" ] |
| 88 } | 88 } |
| 89 } | 89 } |
| OLD | NEW |