blob: 2485ac7cc49c07892d3e199336a92b3ce72ba89b [file] [log] [blame]
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# TODO(crbug.com/1344830): Migrate away from deprecated MDC APIs.
config("disable_deprecated_declarations") {
cflags = [ "-Wno-deprecated-declarations" ]
}
source_set("fancy_ui") {
configs += [
":disable_deprecated_declarations",
"//build/config/compiler:enable_arc",
]
sources = [
"primary_action_button.h",
"primary_action_button.mm",
]
deps = [
"//base",
"//base:i18n",
"//ios/chrome/browser/shared/public/features",
"//ios/chrome/common/ui/colors",
"//ios/chrome/common/ui/util",
]
public_deps = [ "//ios/third_party/material_components_ios" ]
frameworks = [ "UIKit.framework" ]
}