| 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_menu") { | 5 source_set("tools_menu") { |
| 6 sources = [ | 6 sources = [ |
| 7 "reading_list_menu_view_item.h", | 7 "reading_list_menu_view_item.h", |
| 8 "reading_list_menu_view_item.mm", | 8 "reading_list_menu_view_item.mm", |
| 9 "tools_menu_context.h", | 9 "tools_menu_context.h", |
| 10 "tools_menu_context.mm", | 10 "tools_menu_context.mm", |
| 11 "tools_menu_view_controller.h", | 11 "tools_menu_view_controller.h", |
| 12 "tools_menu_view_controller.mm", | 12 "tools_menu_view_controller.mm", |
| 13 "tools_menu_view_item.h", | 13 "tools_menu_view_item.h", |
| 14 "tools_menu_view_item.mm", | 14 "tools_menu_view_item.mm", |
| 15 "tools_menu_view_tools_cell.h", |
| 16 "tools_menu_view_tools_cell.mm", |
| 15 "tools_popup_controller.h", | 17 "tools_popup_controller.h", |
| 16 "tools_popup_controller.mm", | 18 "tools_popup_controller.mm", |
| 17 ] | 19 ] |
| 18 deps = [ | 20 deps = [ |
| 19 "//base", | 21 "//base", |
| 20 "//base:i18n", | 22 "//base:i18n", |
| 21 "//components/reading_list/core", | 23 "//components/reading_list/core", |
| 22 "//components/strings", | 24 "//components/strings", |
| 23 "//ios/chrome/app/strings", | 25 "//ios/chrome/app/strings", |
| 24 "//ios/chrome/browser", | 26 "//ios/chrome/browser", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//ios/chrome/browser/ui", | 68 "//ios/chrome/browser/ui", |
| 67 "//ios/chrome/browser/ui:ui_internal", | 69 "//ios/chrome/browser/ui:ui_internal", |
| 68 "//ios/chrome/browser/ui/toolbar", | 70 "//ios/chrome/browser/ui/toolbar", |
| 69 "//ios/chrome/test/earl_grey:test_support", | 71 "//ios/chrome/test/earl_grey:test_support", |
| 70 "//ios/third_party/earl_grey", | 72 "//ios/third_party/earl_grey", |
| 71 "//ios/web:test_support", | 73 "//ios/web:test_support", |
| 72 "//ui/base", | 74 "//ui/base", |
| 73 ] | 75 ] |
| 74 libs = [ "XCTest.framework" ] | 76 libs = [ "XCTest.framework" ] |
| 75 } | 77 } |
| OLD | NEW |