diff options
author | msw <msw@chromium.org> | 2015-04-28 13:53:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-28 20:53:47 +0000 |
commit | 887c30157baaa9242a798ba8a5a4884d9564b11f (patch) | |
tree | 19c5170d4f02ce1012889d154bc79bb15a75781d /mandoline | |
parent | c1fe98e261ba2dea61a291b3f0b4f9afa2f2ddec (diff) | |
download | chromium_src-887c30157baaa9242a798ba8a5a4884d9564b11f.zip chromium_src-887c30157baaa9242a798ba8a5a4884d9564b11f.tar.gz chromium_src-887c30157baaa9242a798ba8a5a4884d9564b11f.tar.bz2 |
Fix mojo and mandoline android build breaks.
Exclude the mandoline target on android for now (no main).
Rename the test targets to avoid naming conflicts...
(android GN targets doesn't seem to respect output_name)
Update the namespace for mojo::util::FilePathToFileURL call.
See initial breakage at http://build.chromium.org/p/chromium.mojo/builders/Chromium%20Mojo%20Android/builds/384
The relevant CLs are:
https://codereview.chromium.org/1109993002
https://codereview.chromium.org/1091513005
BUG=466129
TEST=Building mojo and mandoline for android passes.
R=sky@chromium.org,ben@chromium.org
Review URL: https://codereview.chromium.org/1115463002
Cr-Commit-Position: refs/heads/master@{#327361}
Diffstat (limited to 'mandoline')
-rw-r--r-- | mandoline/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mandoline/BUILD.gn b/mandoline/BUILD.gn index 239174b..a675d33 100644 --- a/mandoline/BUILD.gn +++ b/mandoline/BUILD.gn @@ -9,7 +9,7 @@ group("mandoline_all") { "//mojo:mojo", ] - if (!is_component_build) { + if (!is_android && !is_component_build) { deps += [ "//mandoline/app:mandoline" ] } } |