Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: third_party/third_party.gni

Issue 2188643002: GN: dm (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp deps Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libwebp/BUILD.gn ('k') | third_party/zlib/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/third_party.gni
diff --git a/third_party/third_party.gni b/third_party/third_party.gni
index d2583a9b7d5af4cdee8769e7e205748256ab85aa..9e552bf5a0c2648b94323613a80ff0f749268869 100644
--- a/third_party/third_party.gni
+++ b/third_party/third_party.gni
@@ -4,8 +4,12 @@
# found in the LICENSE file.
template("third_party") {
+ config(target_name + "_public") {
+ include_dirs = invoker.public_include_dirs
+ }
source_set(target_name) {
- forward_variables_from(invoker, "*")
+ forward_variables_from(invoker, "*", [ "public_include_dirs" ])
+ public_configs = [ ":" + target_name + "_public" ]
# Warnings are just noise if we're not maintaining the code.
cflags = [ "-w" ]
« no previous file with comments | « third_party/libwebp/BUILD.gn ('k') | third_party/zlib/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698