| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("tools") { | 5 source_set("tools") { |
| 6 sources = [ | 6 sources = [ |
| 7 "tools_coordinator.h", | 7 "tools_coordinator.h", |
| 8 "tools_coordinator.mm", | 8 "tools_coordinator.mm", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 source_set("tools_ui") { | 24 source_set("tools_ui") { |
| 25 sources = [ | 25 sources = [ |
| 26 "menu_view_controller.h", | 26 "menu_view_controller.h", |
| 27 "menu_view_controller.mm", | 27 "menu_view_controller.mm", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 configs += [ "//build/config/compiler:enable_arc" ] | 30 configs += [ "//build/config/compiler:enable_arc" ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//base:i18n", |
| 34 "//ios/clean/chrome/browser/ui/actions", | 35 "//ios/clean/chrome/browser/ui/actions", |
| 36 "//ios/third_party/material_roboto_font_loader_ios", |
| 35 ] | 37 ] |
| 36 } | 38 } |
| OLD | NEW |