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

Unified Diff: mojo/public/tools/bindings/mojom.gni

Issue 2028573003: Implement gfx::Transform StructTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing build file Created 4 years, 7 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 | « mash/wm/BUILD.gn ('k') | ui/gfx/geometry/mojo/geometry.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/tools/bindings/mojom.gni
diff --git a/mojo/public/tools/bindings/mojom.gni b/mojo/public/tools/bindings/mojom.gni
index 5449727e6e4e1048fc4fc664ddba42c13df5dde0..dcb3a9360b5b6b76a42225c78b567c22f3566858 100644
--- a/mojo/public/tools/bindings/mojom.gni
+++ b/mojo/public/tools/bindings/mojom.gni
@@ -326,7 +326,7 @@ template("mojom") {
# //mojo/something:something and we can append cpp_sources_suffix to
# get the cpp dependency name.
full_name = get_label_info("$d", "label_no_toolchain")
- deps += [ "${full_name}${variant_suffix}_${cpp_sources_suffix}" ]
+ public_deps += [ "${full_name}${variant_suffix}_${cpp_sources_suffix}" ]
}
foreach(typemap, active_typemaps) {
if (defined(typemap.public_headers)) {
@@ -338,6 +338,9 @@ template("mojom") {
if (defined(typemap.sources)) {
sources += typemap.sources
}
+ if (defined(typemap.public_deps)) {
+ public_deps += typemap.public_deps
+ }
if (defined(typemap.deps)) {
deps += typemap.deps
}
« no previous file with comments | « mash/wm/BUILD.gn ('k') | ui/gfx/geometry/mojo/geometry.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698