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

Unified Diff: mojo/public/BUILD.gn

Issue 782693004: Update mojo sdk to rev f6c8ec07c01deebc13178d516225fd12695c3dc2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hack mojo_system_impl gypi for android :| Created 6 years 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
Index: mojo/public/BUILD.gn
diff --git a/mojo/public/BUILD.gn b/mojo/public/BUILD.gn
index 4cc55482ca7768ec706270ea5dd16a3328d96dd5..33e05c62a4b8b5ba0b7e99ac0405d48cc4e7d266 100644
--- a/mojo/public/BUILD.gn
+++ b/mojo/public/BUILD.gn
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//mojo/public/mojo.gni")
+import("mojo.gni")
group("public") {
# Meta-target, don't link into production code.
@@ -10,39 +10,35 @@ group("public") {
deps = [
":libmojo_sdk",
":sdk",
- "//mojo/public/cpp/application:standalone",
- "//mojo/public/cpp/bindings",
- "//mojo/public/cpp/environment:standalone",
- "//mojo/public/cpp/utility",
- "//mojo/public/interfaces/bindings/tests:test_interfaces",
- "//mojo/public/sky",
+ "cpp/application:standalone",
+ "cpp/bindings",
+ "cpp/environment:standalone",
+ "cpp/utility",
+ "interfaces/bindings/tests:test_interfaces",
+ "sky",
]
if (is_linux) {
- deps += [ "//mojo/public/python" ]
- }
-
- if (mojo_use_dart) {
- deps += [ "//mojo/public/dart" ]
+ deps += [ "python" ]
}
if (is_android) {
deps += [
- "//mojo/public/java:system",
- "//mojo/public/java:bindings",
+ "java:system",
+ "java:bindings",
]
}
}
group("sdk") {
deps = [
- "//mojo/public/c/system",
- "//mojo/public/cpp/application:standalone",
- "//mojo/public/cpp/bindings",
- "//mojo/public/cpp/environment:standalone",
- "//mojo/public/cpp/utility",
- "//mojo/public/interfaces/application",
- "//mojo/public/js",
+ "c/system",
+ "cpp/application:standalone",
+ "cpp/bindings",
+ "cpp/environment:standalone",
+ "cpp/utility",
+ "interfaces/application",
+ "js",
]
}

Powered by Google App Engine
This is Rietveld 408576698