| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['chromeos==1', { | 7 ['chromeos==1', { |
| 8 'variables': { | 8 'variables': { |
| 9 # Whether to compress the 4 main ChromeVox scripts. | 9 # Whether to compress the 4 main ChromeVox scripts. |
| 10 'chromevox_compress_js%': '1', | 10 'chromevox_compress_js%': '1', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'destination': '<(chromevox_dest_dir)/chromevox/background', | 67 'destination': '<(chromevox_dest_dir)/chromevox/background', |
| 68 'files': [ | 68 'files': [ |
| 69 'chromevox/background/kbexplorer.html', | 69 'chromevox/background/kbexplorer.html', |
| 70 'chromevox/background/options.html', | 70 'chromevox/background/options.html', |
| 71 ], | 71 ], |
| 72 }, | 72 }, |
| 73 { | 73 { |
| 74 'destination': '<(chromevox_dest_dir)/cvox2/background', | 74 'destination': '<(chromevox_dest_dir)/cvox2/background', |
| 75 'files': [ | 75 'files': [ |
| 76 'cvox2/background/background.html', | 76 'cvox2/background/background.html', |
| 77 'cvox2/background/next_update.html', | |
| 78 'cvox2/background/panel.css', | 77 'cvox2/background/panel.css', |
| 79 'cvox2/background/panel.html', | 78 'cvox2/background/panel.html', |
| 80 ], | 79 ], |
| 81 }, | 80 }, |
| 82 ], | 81 ], |
| 83 }, | 82 }, |
| 84 { | 83 { |
| 85 # JavaScript files that are always directly included into the | 84 # JavaScript files that are always directly included into the |
| 86 # destination directory. | 85 # destination directory. |
| 87 'target_name': 'chromevox_uncompiled_js_files', | 86 'target_name': 'chromevox_uncompiled_js_files', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 '<(chromevox_panel_script_loader_file)', | 240 '<(chromevox_panel_script_loader_file)', |
| 242 ], | 241 ], |
| 243 'includes': [ 'copy_js.gypi', ], | 242 'includes': [ 'copy_js.gypi', ], |
| 244 }, | 243 }, |
| 245 ], | 244 ], |
| 246 }], | 245 }], |
| 247 ], | 246 ], |
| 248 }], | 247 }], |
| 249 ], | 248 ], |
| 250 } | 249 } |
| OLD | NEW |