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 'includes': ['common.gypi'], | |
9 'variables': { | 8 'variables': { |
10 # Whether to compress the 4 main ChromeVox scripts. Applicable if | 9 # Whether to compress the 4 main ChromeVox scripts. Applicable if |
11 # use_migrated_chromevox is true. | 10 # use_migrated_chromevox is true. |
12 'chromevox_compress_js%': '1', | 11 'chromevox_compress_js%': '1', |
13 'background_script_loader_file': 'chromevox/background/loader.js', | 12 'background_script_loader_file': 'chromevox/background/loader.js', |
14 'content_script_loader_file': 'chromevox/injected/loader.js', | 13 'content_script_loader_file': 'chromevox/injected/loader.js', |
15 'options_script_loader_file': 'chromevox/background/options_loader.js', | 14 'options_script_loader_file': 'chromevox/background/options_loader.js', |
16 'kbexplorer_loader_file': 'chromevox/background/kbexplorer_loader.js', | 15 'kbexplorer_loader_file': 'chromevox/background/kbexplorer_loader.js', |
17 }, | 16 }, |
| 17 'includes': [ |
| 18 'chromevox_tests.gypi', |
| 19 'common.gypi', |
| 20 ], |
18 'targets': [ | 21 'targets': [ |
19 { | 22 { |
20 'target_name': 'chromevox', | 23 'target_name': 'chromevox', |
21 'type': 'none', | 24 'type': 'none', |
22 'dependencies': [ | 25 'dependencies': [ |
23 'chromevox_resources', | 26 'chromevox_resources', |
24 'chromevox_manifest', | 27 'chromevox_manifest', |
25 'chromevox_guest_manifest', | 28 'chromevox_guest_manifest', |
26 ], | 29 ], |
27 }, | 30 }, |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 '<(options_script_loader_file)', | 198 '<(options_script_loader_file)', |
196 ], | 199 ], |
197 'includes': [ 'copy_js.gypi', ], | 200 'includes': [ 'copy_js.gypi', ], |
198 }, | 201 }, |
199 ], | 202 ], |
200 }], | 203 }], |
201 ], | 204 ], |
202 }], | 205 }], |
203 ], | 206 ], |
204 } | 207 } |
OLD | NEW |