OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 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 'target_name': 'net_java', | |
9 'message': 'building net java sources', | |
10 'type': 'none', | |
11 'actions': [ | |
12 { | |
13 'action_name': 'net_java', | |
14 'inputs': [ | |
15 '<(DEPTH)/net/android/java/net.xml', | |
Ryan Sleevi
2012/04/13 22:37:58
In Chromium code, we really, really try to minimiz
Yaron
2012/04/17 16:18:03
It's not. I didn't realize it was frowned upon.
| |
16 '<!@(find <(DEPTH)/net/android/java -name "*.java")' | |
Ryan Sleevi
2012/04/13 22:37:58
This is really not ideal. The request for this has
Yaron
2012/04/17 16:18:03
This was discussed in the spin-off bug
| |
17 ], | |
18 'dependencies': [ | |
19 '<(DEPTH)/base/android/java/java.gyp:base_java', | |
20 ], | |
21 'outputs': [ | |
22 '<(DEPTH)/net/android/java/dist/lib/chromium_net.jar', | |
John Grabowski
2012/04/13 22:37:30
let's put output in a standard location outside th
Ryan Sleevi
2012/04/13 22:37:58
Dropping files into the source tree = please avoid
Yaron
2012/04/17 16:18:03
Yep, I agree but was again following base for cons
Yaron
2012/04/17 16:18:03
Done.
| |
23 ], | |
24 'action': [ | |
25 'ant', | |
26 '-buildfile', | |
John Grabowski
2012/04/13 22:37:30
see more stuff here
see http://chromiumcodereview.
Yaron
2012/04/17 16:18:03
Done.
| |
27 '<(DEPTH)/net/android/java/net.xml', | |
Ryan Sleevi
2012/04/13 22:37:58
Rather than repeat this (shared with src/base/andr
Yaron
2012/04/17 16:18:03
Done.
| |
28 ] | |
29 }, | |
30 ], | |
31 }, | |
32 ], | |
33 } | |
OLD | NEW |