OLD | NEW |
| (Empty) |
1 | |
2 { | |
3 'action_name': 'findbugs_<(_target_name)', | |
4 'message': 'Running findbugs on <(_target_name)', | |
5 'variables': { | |
6 }, | |
7 'inputs': [ | |
8 '<(DEPTH)/build/android/findbugs_diff.py', | |
9 '<(DEPTH)/build/android/findbugs_filter/findbugs_exclude.xml', | |
10 '<(DEPTH)/build/android/pylib/utils/findbugs.py', | |
11 '<(findbugs_target_jar_path)', | |
12 ], | |
13 'outputs': [ | |
14 '<(stamp_path)', | |
15 ], | |
16 'action': [ | |
17 'python', '<(DEPTH)/build/android/findbugs_diff.py', | |
18 '--auxclasspath-gyp', '>(auxclasspath)', | |
19 '--stamp', '<(stamp_path)', | |
20 '<(findbugs_target_jar_path)', | |
21 ], | |
22 } | |
OLD | NEW |