Chromium Code Reviews| 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 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "reading_list_menu_view_item.h", | 8 "reading_list_menu_view_item.h", |
| 9 "reading_list_menu_view_item.mm", | 9 "reading_list_menu_view_item.mm", |
| 10 "text_badge_view.h", | |
|
edchin
2017/06/27 00:39:42
Per our discussion, please move this to the readin
| |
| 11 "text_badge_view.mm", | |
| 10 "tools_menu_constants.h", | 12 "tools_menu_constants.h", |
| 11 "tools_menu_constants.mm", | 13 "tools_menu_constants.mm", |
| 12 "tools_menu_model.h", | 14 "tools_menu_model.h", |
| 13 "tools_menu_model.mm", | 15 "tools_menu_model.mm", |
| 14 "tools_menu_view_controller.h", | 16 "tools_menu_view_controller.h", |
| 15 "tools_menu_view_controller.mm", | 17 "tools_menu_view_controller.mm", |
| 16 "tools_menu_view_item.h", | 18 "tools_menu_view_item.h", |
| 17 "tools_menu_view_item.mm", | 19 "tools_menu_view_item.mm", |
| 18 "tools_menu_view_tools_cell.h", | 20 "tools_menu_view_tools_cell.h", |
| 19 "tools_menu_view_tools_cell.mm", | 21 "tools_menu_view_tools_cell.mm", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 83 "//ios/chrome/browser/ui:ui_internal", | 85 "//ios/chrome/browser/ui:ui_internal", |
| 84 "//ios/chrome/browser/ui/toolbar", | 86 "//ios/chrome/browser/ui/toolbar", |
| 85 "//ios/chrome/test/earl_grey:test_support", | 87 "//ios/chrome/test/earl_grey:test_support", |
| 86 "//ios/third_party/earl_grey", | 88 "//ios/third_party/earl_grey", |
| 87 "//ios/web/public/test", | 89 "//ios/web/public/test", |
| 88 "//ios/web/public/test/http_server", | 90 "//ios/web/public/test/http_server", |
| 89 "//ui/base", | 91 "//ui/base", |
| 90 ] | 92 ] |
| 91 libs = [ "XCTest.framework" ] | 93 libs = [ "XCTest.framework" ] |
| 92 } | 94 } |
| OLD | NEW |