| OLD | NEW |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Usage: | 5 # Usage: |
| 6 # { | 6 # { |
| 7 # 'target_name': 'your_target_name', | 7 # 'target_name': 'your_target_name', |
| 8 # 'type': 'none', | 8 # 'type': 'none', |
| 9 # 'actions': [ | 9 # 'actions': [ |
| 10 # { | 10 # { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 ], | 34 ], |
| 35 'action': [ | 35 'action': [ |
| 36 '<(bro)', | 36 '<(bro)', |
| 37 '--force', | 37 '--force', |
| 38 '--input', | 38 '--input', |
| 39 '<(input_file)', | 39 '<(input_file)', |
| 40 '--output', | 40 '--output', |
| 41 '<(output_file)', | 41 '<(output_file)', |
| 42 ], | 42 ], |
| 43 'dependencies': [ | 43 'dependencies': [ |
| 44 '<(DEPTH)/third_party/brotli/brotli.gyp:bro#host', | 44 '<(DEPTH)/third_party/brotli/brotli.gyp:bro', |
| 45 ], | 45 ], |
| 46 } | 46 } |
| OLD | NEW |