| 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_configuration.h", | 9 "tools_menu_configuration.h", |
| 10 "tools_menu_configuration.mm", | 10 "tools_menu_configuration.mm", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "//ios/chrome/browser/ui/commands:commands", | 60 "//ios/chrome/browser/ui/commands:commands", |
| 61 "//ios/web:user_agent", | 61 "//ios/web:user_agent", |
| 62 "//testing/gtest", | 62 "//testing/gtest", |
| 63 ] | 63 ] |
| 64 } | 64 } |
| 65 | 65 |
| 66 source_set("eg_tests") { | 66 source_set("eg_tests") { |
| 67 configs += [ "//build/config/compiler:enable_arc" ] | 67 configs += [ "//build/config/compiler:enable_arc" ] |
| 68 testonly = true | 68 testonly = true |
| 69 sources = [ | 69 sources = [ |
| 70 "request_desktop_mobile_site_egtest.mm", |
| 70 "tools_popup_menu_egtest.mm", | 71 "tools_popup_menu_egtest.mm", |
| 71 ] | 72 ] |
| 72 deps = [ | 73 deps = [ |
| 73 ":tools_menu", | 74 ":tools_menu", |
| 74 "//base", | 75 "//base", |
| 75 "//components/strings", | 76 "//components/strings", |
| 76 "//ios/chrome/app/strings", | 77 "//ios/chrome/app/strings", |
| 77 "//ios/chrome/browser/ui", | 78 "//ios/chrome/browser/ui", |
| 78 "//ios/chrome/browser/ui:ui_internal", | 79 "//ios/chrome/browser/ui:ui_internal", |
| 79 "//ios/chrome/browser/ui/toolbar", | 80 "//ios/chrome/browser/ui/toolbar", |
| 80 "//ios/chrome/test/earl_grey:test_support", | 81 "//ios/chrome/test/earl_grey:test_support", |
| 81 "//ios/third_party/earl_grey", | 82 "//ios/third_party/earl_grey", |
| 82 "//ios/web:test_support", | 83 "//ios/web:test_support", |
| 83 "//ui/base", | 84 "//ui/base", |
| 84 ] | 85 ] |
| 85 libs = [ "XCTest.framework" ] | 86 libs = [ "XCTest.framework" ] |
| 86 } | 87 } |
| OLD | NEW |