diff options
author | mtklein <mtklein@chromium.org> | 2015-07-01 06:45:36 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-01 13:46:05 +0000 |
commit | 933d820ebe1caac8674d6b17ccf073dd4d1bb339 (patch) | |
tree | cb902838b112158751d0f6a48d751de140f0eaf3 /skia | |
parent | 787c38ff3a0d9472bf7ec3b30e0723d8ebb63f70 (diff) | |
download | chromium_src-933d820ebe1caac8674d6b17ccf073dd4d1bb339.zip chromium_src-933d820ebe1caac8674d6b17ccf073dd4d1bb339.tar.gz chromium_src-933d820ebe1caac8674d6b17ccf073dd4d1bb339.tar.bz2 |
Add include/private to build path when building Skia.
This stages https://codereview.chromium.org/1217293004/
Tested by patching the above CL, then doing GYP- and GN-based builds. Seems okay.
BUG=
Review URL: https://codereview.chromium.org/1217693003
Cr-Commit-Position: refs/heads/master@{#337015}
Diffstat (limited to 'skia')
-rw-r--r-- | skia/BUILD.gn | 1 | ||||
-rw-r--r-- | skia/skia_library.gypi | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/skia/BUILD.gn b/skia/BUILD.gn index 298584e..c15153e 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -177,6 +177,7 @@ config("skia_library_config") { # exported to dependents. It's not clear if this is on purpose, but this # matches the GYP build. include_dirs = [ + "//third_party/skia/include/private", "//third_party/skia/src/core", "//third_party/skia/src/image", "//third_party/skia/src/opts", diff --git a/skia/skia_library.gypi b/skia/skia_library.gypi index ee7050b..29c5241 100644 --- a/skia/skia_library.gypi +++ b/skia/skia_library.gypi @@ -151,7 +151,7 @@ '../third_party/skia/include/pdf', '../third_party/skia/include/pipe', '../third_party/skia/include/ports', - '../third_party/skia/include/record', + '../third_party/skia/include/private', '../third_party/skia/include/utils', '../third_party/skia/src/core', '../third_party/skia/src/opts', |