mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
59 lines
1.6 KiB
Plaintext
59 lines
1.6 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("elements") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"selector_coordinator.h",
|
|
"selector_coordinator.mm",
|
|
"selector_picker_presentation_controller.h",
|
|
"selector_picker_presentation_controller.mm",
|
|
"selector_picker_view_controller.h",
|
|
"selector_picker_view_controller.mm",
|
|
"selector_view_controller_delegate.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/ui/coordinators:chrome_coordinators",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"activity_overlay_coordinator_unittest.mm",
|
|
"selector_coordinator_unittest.mm",
|
|
"selector_picker_view_controller_unittest.mm",
|
|
]
|
|
deps = [
|
|
":elements",
|
|
":elements_internal",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//testing/gtest",
|
|
"//third_party/ocmock",
|
|
]
|
|
}
|
|
|
|
source_set("elements_internal") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"activity_overlay_coordinator.h",
|
|
"activity_overlay_coordinator.mm",
|
|
"activity_overlay_view_controller.h",
|
|
"activity_overlay_view_controller.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/coordinators:chrome_coordinators",
|
|
"//ios/chrome/browser/ui/material_components",
|
|
"//ios/third_party/material_components_ios",
|
|
]
|
|
libs = [ "UIKit.framework" ]
|
|
}
|