summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-12-17 17:07:39 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-18 01:08:37 +0000
commit89c7be623e3cc5052aaf8c3be3996432a9d4bceb (patch)
tree5d623a131fe355674d6187ff138abc4b42835c01 /mojo
parent5c5fa5660fb0ebfb3534a4396520c44dc246a6d1 (diff)
downloadchromium_src-89c7be623e3cc5052aaf8c3be3996432a9d4bceb.zip
chromium_src-89c7be623e3cc5052aaf8c3be3996432a9d4bceb.tar.gz
chromium_src-89c7be623e3cc5052aaf8c3be3996432a9d4bceb.tar.bz2
Make base a static ibrary
This saves a nontrivial amount of space for some of the smaller targets in release builds. See the comment added to the base target for more. Remove libmojo_sdk. This is a complete static library that depended on base. Since base is now a static library, this dependency is not allowed. The mojo team says this target is no longer needed, so it was deleted. Review URL: https://codereview.chromium.org/1528233002 Cr-Commit-Position: refs/heads/master@{#365955}
Diffstat (limited to 'mojo')
-rw-r--r--mojo/public/BUILD.gn8
1 files changed, 0 insertions, 8 deletions
diff --git a/mojo/public/BUILD.gn b/mojo/public/BUILD.gn
index b917cf1..f87fb94 100644
--- a/mojo/public/BUILD.gn
+++ b/mojo/public/BUILD.gn
@@ -6,7 +6,6 @@ group("public") {
# Meta-target, don't link into production code.
testonly = true
deps = [
- ":libmojo_sdk",
":sdk",
"cpp/bindings",
"cpp/environment:standalone",
@@ -32,10 +31,3 @@ group("sdk") {
"js",
]
}
-
-static_library("libmojo_sdk") {
- complete_static_lib = true
- deps = [
- ":sdk",
- ]
-}