| OLD | NEW |
| (Empty) |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("tab") { | |
| 6 sources = [ | |
| 7 "sc_bottom_toolbar_tab_coordinator.h", | |
| 8 "sc_bottom_toolbar_tab_coordinator.mm", | |
| 9 "sc_top_toolbar_tab_coordinator.h", | |
| 10 "sc_top_toolbar_tab_coordinator.mm", | |
| 11 ] | |
| 12 deps = [ | |
| 13 "//base", | |
| 14 "//ios/clean/chrome/browser/ui/commands", | |
| 15 "//ios/clean/chrome/browser/ui/tab:tab_ui", | |
| 16 "//ios/showcase/common", | |
| 17 ] | |
| 18 libs = [ "UIKit.framework" ] | |
| 19 configs += [ "//build/config/compiler:enable_arc" ] | |
| 20 } | |
| 21 | |
| 22 source_set("eg_tests") { | |
| 23 testonly = true | |
| 24 sources = [ | |
| 25 "sc_tab_egtest.mm", | |
| 26 ] | |
| 27 deps = [ | |
| 28 "//ios/showcase/test", | |
| 29 "//ios/third_party/earl_grey", | |
| 30 ] | |
| 31 libs = [ "XCTest.framework" ] | |
| 32 configs += [ "//build/config/compiler:enable_arc" ] | |
| 33 } | |
| OLD | NEW |