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

Side by Side Diff: chrome/browser/resources/chromeos/switch_access/compiled_resources2.gyp

Issue 2777203006: Added auto-scan, made some small changes to how prefs are stored, refactored. (Closed)
Patch Set: Created 3 years, 8 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'auto_scan_manager',
9 'dependencies': [
10 'switch_access_interface',
11 'prefs',
12 ],
13 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
14 },
15 {
8 'target_name': 'background', 16 'target_name': 'background',
9 'dependencies': [ 17 'dependencies': [
10 '<(EXTERNS_GYP):chrome_extensions', 18 '<(EXTERNS_GYP):chrome_extensions',
11 'prefs',
12 'switch_access', 19 'switch_access',
13 ], 20 ],
14 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 21 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
15 }, 22 },
16 { 23 {
24 'target_name': 'closure_support',
25 'dependencies': [
26 '<(EXTERNS_GYP):automation',
27 ],
28 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
29 },
30 {
31 'target_name': 'keyboard_handler',
32 'dependencies': [
33 'switch_access_interface',
34 ],
35 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
36 },
37 {
17 'target_name': 'options', 38 'target_name': 'options',
18 'dependencies': [ 39 'dependencies': [
19 '<(EXTERNS_GYP):chrome_extensions', 40 '<(EXTERNS_GYP):chrome_extensions',
20 'prefs', 41 'prefs',
21 'switch_access', 42 'switch_access',
22 'background', 43 'background',
23 ], 44 ],
24 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 45 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
25 }, 46 },
26 { 47 {
27 'target_name': 'prefs', 48 'target_name': 'prefs',
28 'dependencies': [ 49 'dependencies': [
29 '<(EXTERNS_GYP):chrome_extensions', 50 '<(EXTERNS_GYP):chrome_extensions',
30 ], 51 ],
31 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 52 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
32 }, 53 },
33 { 54 {
34 'target_name': 'switch_access', 55 'target_name': 'switch_access',
35 'dependencies': [ 56 'dependencies': [
36 '<(EXTERNS_GYP):accessibility_private', 57 '<(EXTERNS_GYP):accessibility_private',
37 '<(EXTERNS_GYP):automation', 58 '<(EXTERNS_GYP):automation',
38 '<(EXTERNS_GYP):chrome_extensions', 59 '<(EXTERNS_GYP):chrome_extensions',
60 'closure_support',
61 'prefs',
62 'auto_scan_manager',
63 'keyboard_handler',
64 'tree_walker',
65 ],
66 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
67 },
68 {
69 'target_name': 'switch_access_interface',
70 'dependencies': [
39 'prefs', 71 'prefs',
40 ], 72 ],
41 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 73 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
42 }, 74 },
75 {
76 'target_name': 'tree_walker',
77 'dependencies': [
78 'closure_support',
79 ],
80 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
81 }
43 ], 82 ],
44 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698