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

Unified Diff: components/mus/BUILD.gn

Issue 1635613002: [mojo-bindings] Support reuse of native enum classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix more missing public_deps Created 4 years, 11 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 | « cc/BUILD.gn ('k') | components/mus/public/interfaces/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/BUILD.gn
diff --git a/components/mus/BUILD.gn b/components/mus/BUILD.gn
index 241068726ddca2231a04dbda26544efd24c56fb0..d7c542ed125216129675e08cb982ceb894c30740 100644
--- a/components/mus/BUILD.gn
+++ b/components/mus/BUILD.gn
@@ -67,28 +67,29 @@ source_set("lib") {
]
deps = [
- "//base",
"//cc",
"//cc/surfaces",
"//components/mus/common",
"//components/mus/gles2",
- "//components/mus/public/interfaces",
"//components/mus/surfaces",
- "//components/mus/ws:lib",
- "//mojo/common:common_base",
"//mojo/services/tracing/public/cpp",
- "//mojo/shell/public/cpp",
"//ui/events",
"//ui/gl:gl",
"//ui/platform_window:platform_impls",
"//ui/platform_window:platform_window",
]
+ public_deps = [
+ "//base",
+ "//components/mus/public/interfaces",
+ "//components/mus/ws:lib",
+ "//mojo/common:common_base",
+ "//mojo/shell/public/cpp",
+ ]
+
if (use_x11) {
public_configs = [ "//build/config/linux:x11" ]
- public_deps = [
- "//ui/events/platform/x11",
- ]
+ public_deps += [ "//ui/events/platform/x11" ]
}
if (use_ozone) {
« no previous file with comments | « cc/BUILD.gn ('k') | components/mus/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698