Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox.gyp

Issue 304793002: Support automatically resolving dependencies in javascript tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Use new generate_deps.py, don't add closure's depswriter. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/chromevox_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/chromevox_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698