blob: 29c18c5cccdbf32cf765179fc26aa0296019a8dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("mandoline") {
# Meta-target, don't link into production code.
testonly = true
# TODO(beng): should be able to remove this in favor of explicit dependencies
# from subdirs.
deps = [
"//mojo",
]
if (!is_component_build) {
deps += [ "//mandoline/app" ]
}
}
|