Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 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 # TODO(ios): Enable javascript compilation. See http://crbug.com/429756 | |
| 7 'rules': [ | |
| 8 { | |
| 9 'rule_name': 'jscompilation', | |
| 10 'extension': 'js', | |
| 11 'outputs': [ | |
| 12 '<(SHARED_INTERMEDIATE_DIR)/<(RULE_INPUT_NAME)', | |
| 13 ], | |
| 14 'action': [ | |
| 15 'cp', | |
| 16 '<(RULE_INPUT_PATH)', | |
| 17 '<@(_outputs)', | |
| 18 ], | |
| 19 }, | |
| 20 ], # rule_name: jscompilation | |
| 21 } | |
| OLD | NEW |