| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 group("all") { | 7 group("all") { |
| 8 # Meta-target, don't link into production code. | 8 # Meta-target, don't link into production code. |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| 11 deps = [ | 11 deps = [ |
| 12 ":tests", |
| 12 "//mojo", | 13 "//mojo", |
| 13 ":tests", | |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 if (is_android) { | 16 if (is_android) { |
| 17 deps += [ "//mandoline/app/android" ] | 17 deps += [ "//mandoline/app/android" ] |
| 18 } else { | 18 } else { |
| 19 deps += [ | 19 deps += [ |
| 20 "//components/mus/example", | 20 "//components/mus/example", |
| 21 "//mandoline/app/desktop", | 21 "//mandoline/app/desktop", |
| 22 ] | 22 ] |
| 23 } | 23 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 51 "//components/web_view/test_runner", | 51 "//components/web_view/test_runner", |
| 52 "//media/mojo/services:tests", | 52 "//media/mojo/services:tests", |
| 53 "//sql/mojo:apptests", | 53 "//sql/mojo:apptests", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 if (use_aura) { | 56 if (use_aura) { |
| 57 deps += [ "//mandoline/ui/desktop_ui:mandoline_browser_apptests" ] | 57 deps += [ "//mandoline/ui/desktop_ui:mandoline_browser_apptests" ] |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 } | 60 } |
| OLD | NEW |