blob: 1faf68eefffb2d1ffaa3d467af1ca59893c60a67 [file] [log] [blame]
# Copyright 2021 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("screen_provider") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"screen_provider.h",
"screen_provider.mm",
]
deps = [
":screen_type",
"//base",
"//ios/chrome/browser/shared/public/features",
]
}
source_set("screen_provider_protected") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [ "screen_provider+protected.h" ]
deps = [ ":screen_provider" ]
}
source_set("screen_type") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [ "screen_type.h" ]
}