OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 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 | |
5 { | |
6 'targets': [ | |
7 { | |
8 # Leak Canary added to GN only. | |
Yaron
2016/02/12 02:50:27
Why include this at all?
Yaron
2016/02/12 02:56:12
nvm - i see why. it's so the java dep works from C
| |
9 'target_name': 'leakcanary_java', | |
10 'type': 'none', | |
11 'variables': { | |
12 'java_in_dir': 'src/leakcanary-android-no-op/src/main', | |
13 'java_in_dir_suffix': '/java', | |
14 }, | |
15 'includes': [ '../../build/java.gypi' ], | |
16 }, | |
17 ], | |
18 } | |
OLD | NEW |