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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/common.gypi

Issue 572373002: Refactor tabs API handlers out of AccessibilityApiHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Getting out of a bind. Created 6 years, 3 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 # Common variables shared amongst all ChromeVox targets. 4 # Common variables shared amongst all ChromeVox targets.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 'chromevox_dir': '.',
8 'chromevox_third_party_dir': '<(DEPTH)/chrome/third_party/chromevox', 9 'chromevox_third_party_dir': '<(DEPTH)/chrome/third_party/chromevox',
9 'closure_goog_dir': '<(chromevox_third_party_dir)/third_party/closure-librar y/closure/goog', 10 'closure_goog_dir': '<(chromevox_third_party_dir)/third_party/closure-librar y/closure/goog',
10 'chromevox_dest_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox', 11 'chromevox_dest_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox',
11 'js_root_flags': [ 12 'js_root_flags': [
12 '-r', '.', 13 '-r', '.',
14 '-r', '<(chromevox_dir)',
13 '-r', '<(closure_goog_dir)', 15 '-r', '<(closure_goog_dir)',
14 '-x', 'testing', 16 '-x', 'testing',
15 '-x', '_test.js', 17 '-x', '_test.js',
16 ], 18 ],
17 'path_rewrite_flags': [ 19 'path_rewrite_flags': [
18 '-w', '<(closure_goog_dir):closure', 20 '-w', '<(closure_goog_dir):closure',
19 ], 21 ],
20 'template_manifest_path': 'manifest.json.jinja2', 22 'template_manifest_path': 'manifest.json.jinja2',
21 }, 23 },
22 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698