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

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: Various fixes. 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
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 'variables': { 8 'variables': {
9 # Whether to compress the 4 main ChromeVox scripts. Applicable if 9 # Whether to compress the 4 main ChromeVox scripts. Applicable if
10 # use_migrated_chromevox is true. 10 # use_migrated_chromevox is true.
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 # translations. 135 # translations.
136 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/c hromevox', 136 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/c hromevox',
137 # We don't generate any RC files, so no resource_ds file is need ed. 137 # We don't generate any RC files, so no resource_ds file is need ed.
138 'grit_resource_ids': '', 138 'grit_resource_ids': '',
139 }, 139 },
140 'includes': [ '../../../../../build/grit_action.gypi' ], 140 'includes': [ '../../../../../build/grit_action.gypi' ],
141 }, 141 },
142 ], 142 ],
143 }, 143 },
144 ], 144 ],
145 'includes': [
146 'chromevox_tests.gypi',
147 ],
145 'conditions': [ 148 'conditions': [
146 ['use_migrated_chromevox==1 and chromevox_compress_js==1', { 149 ['use_migrated_chromevox==1 and chromevox_compress_js==1', {
147 'targets': [ 150 'targets': [
148 { 151 {
149 'target_name': 'chromevox_content_script', 152 'target_name': 'chromevox_content_script',
150 'type': 'none', 153 'type': 'none',
151 'variables': { 154 'variables': {
152 'output_file': '<(chromevox_dest_dir)/chromeVoxChromePageScript. js', 155 'output_file': '<(chromevox_dest_dir)/chromeVoxChromePageScript. js',
153 }, 156 },
154 'sources': [ '<(content_script_loader_file)' ], 157 'sources': [ '<(content_script_loader_file)' ],
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 '<(options_script_loader_file)', 202 '<(options_script_loader_file)',
200 ], 203 ],
201 'includes': [ 'copy_js.gypi', ], 204 'includes': [ 'copy_js.gypi', ],
202 }, 205 },
203 ], 206 ],
204 }], 207 }],
205 ], 208 ],
206 }], 209 }],
207 ], 210 ],
208 } 211 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/chromevox_tests.gypi » ('j') | chrome/chrome_tests.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698