summaryrefslogtreecommitdiffstats
path: root/components/infobars.gypi
diff options
context:
space:
mode:
authordroger <droger@chromium.org>2014-10-13 11:37:51 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-13 18:38:47 +0000
commit1931738068426dfde3b634bd35345da225cd5b3e (patch)
tree91db11973a4ba6ae1055061979d6116915e1efa8 /components/infobars.gypi
parentdd88df8d4fc519465e1636734b691e27d93276c9 (diff)
downloadchromium_src-1931738068426dfde3b634bd35345da225cd5b3e.zip
chromium_src-1931738068426dfde3b634bd35345da225cd5b3e.tar.gz
chromium_src-1931738068426dfde3b634bd35345da225cd5b3e.tar.bz2
Export the dependency of infobars on skia in gyp
This dependency is already exported in BUILD.gn, but not in infobars.gypi. Infobar code transitively includes skia headers. An example of this is infobars.h including SkColor.h. These skia headers need skia to be added in the include path in order to compile. Because of this, any target depending on infobars must also add skia include dirs. Review URL: https://codereview.chromium.org/650203002 Cr-Commit-Position: refs/heads/master@{#299330}
Diffstat (limited to 'components/infobars.gypi')
-rw-r--r--components/infobars.gypi3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/infobars.gypi b/components/infobars.gypi
index 6f9fdf7..6a9692e 100644
--- a/components/infobars.gypi
+++ b/components/infobars.gypi
@@ -17,6 +17,9 @@
'../ui/gfx/gfx.gyp:gfx',
'../ui/strings/ui_strings.gyp:ui_strings',
],
+ 'export_dependent_settings': [
+ '../skia/skia.gyp:skia',
+ ],
'sources': [
# Note: sources duplicated in GN build.
'infobars/core/confirm_infobar_delegate.cc',