diff options
Diffstat (limited to 'chromium/components/infobars/content/BUILD.gn')
-rw-r--r-- | chromium/components/infobars/content/BUILD.gn | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chromium/components/infobars/content/BUILD.gn b/chromium/components/infobars/content/BUILD.gn new file mode 100644 index 00000000000..6be0c41535c --- /dev/null +++ b/chromium/components/infobars/content/BUILD.gn @@ -0,0 +1,18 @@ +# Copyright 2020 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. + +static_library("content") { + sources = [ + "content_infobar_manager.cc", + "content_infobar_manager.h", + ] + + public_deps = [ + "//base", + "//components/infobars/core", + "//content/public/browser", + "//content/public/common", + "//ui/base", + ] +} |