blob: 7f482c91b71bcb7be7237e544adda72ca4c5280d [file] [log] [blame]
Viet-Trung Luu36627ff2015-05-11 12:36:47 -07001# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Sean Klein473c8d02015-12-16 14:45:41 -08005import("//build/config/nacl/config.gni")
6
7# Collection of apps which are currently capable of being built as pexes.
8group("portable_apps") {
Viet-Trung Luu36627ff2015-05-11 12:36:47 -07009 testonly = true
10
Jeff Brown82033472016-01-26 15:46:53 -080011 deps = []
Sean Klein473c8d02015-12-16 14:45:41 -080012}
13
14group("apps") {
15 testonly = true
16
17 deps = [
18 ":portable_apps",
19 "//apps/benchmark",
20 "//apps/benchmark:apptests",
Jeff Brown5a846ea2016-01-26 15:53:07 -080021 "//apps/moterm",
22 "//apps/moterm:apptests",
Sean Klein473c8d02015-12-16 14:45:41 -080023 ]
Benjamin Lerman7400be32015-11-19 15:25:12 +010024
25 if (is_android) {
26 deps += [ "//apps/shortcut" ]
27 }
Sean Klein473c8d02015-12-16 14:45:41 -080028
29 if (mojo_use_nacl) {
30 deps += [ ":portable_apps(//build/toolchain/nacl:newlib_pnacl)" ]
31 }
Viet-Trung Luu36627ff2015-05-11 12:36:47 -070032}