blob: 6c9edd5db6993dee1d4399ea5e753f1b2dafed08 [file] [log] [blame]
# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("presenters") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"contained_presenter.h",
"contained_presenter_delegate.h",
"non_modal_view_controller_presenter.h",
"non_modal_view_controller_presenter.mm",
"vertical_animation_container.h",
"vertical_animation_container.mm",
]
deps = [
"//base",
"//ios/chrome/common/ui/util",
]
}
source_set("unit_tests") {
testonly = true
configs += [ "//build/config/compiler:enable_arc" ]
sources = [ "vertical_animation_container_unittest.mm" ]
deps = [
":presenters",
"//base",
"//base/test:test_support",
"//testing/gtest",
]
}