| 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", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "//ios/third_party/material_roboto_font_loader_ios", | 37 "//ios/third_party/material_roboto_font_loader_ios", |
| 38 "//ui/base", | 38 "//ui/base", |
| 39 ] | 39 ] |
| 40 libs = [ | 40 libs = [ |
| 41 "QuartzCore.framework", | 41 "QuartzCore.framework", |
| 42 "UIKit.framework", | 42 "UIKit.framework", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 source_set("unit_tests") { | 46 source_set("unit_tests") { |
| 47 configs += [ "//build/config/compiler:enable_arc" ] |
| 47 testonly = true | 48 testonly = true |
| 48 sources = [ | 49 sources = [ |
| 49 "tools_menu_view_item_unittest.mm", | 50 "tools_menu_view_item_unittest.mm", |
| 50 ] | 51 ] |
| 51 deps = [ | 52 deps = [ |
| 52 ":tools_menu", | 53 ":tools_menu", |
| 53 "//base", | 54 "//base", |
| 54 "//testing/gtest", | 55 "//testing/gtest", |
| 55 ] | 56 ] |
| 56 } | 57 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 68 "//ios/chrome/browser/ui", | 69 "//ios/chrome/browser/ui", |
| 69 "//ios/chrome/browser/ui:ui_internal", | 70 "//ios/chrome/browser/ui:ui_internal", |
| 70 "//ios/chrome/browser/ui/toolbar", | 71 "//ios/chrome/browser/ui/toolbar", |
| 71 "//ios/chrome/test/earl_grey:test_support", | 72 "//ios/chrome/test/earl_grey:test_support", |
| 72 "//ios/third_party/earl_grey", | 73 "//ios/third_party/earl_grey", |
| 73 "//ios/web:test_support", | 74 "//ios/web:test_support", |
| 74 "//ui/base", | 75 "//ui/base", |
| 75 ] | 76 ] |
| 76 libs = [ "XCTest.framework" ] | 77 libs = [ "XCTest.framework" ] |
| 77 } | 78 } |
| OLD | NEW |