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

Side by Side Diff: ui/accessibility/extensions/accessibility_extensions.gyp

Issue 1109953003: Check in animation policy extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@update_versions
Patch Set: Created 5 years, 7 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 'variables': { 6 'variables': {
7 'dest_dir': '<(PRODUCT_DIR)/ui/accessibility/extensions', 7 'dest_dir': '<(PRODUCT_DIR)/ui/accessibility/extensions',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'accessibility_extensions', 11 'target_name': 'accessibility_extensions',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 'alt', 14 'alt',
15 'animation',
15 'caretbrowsing', 16 'caretbrowsing',
16 'colorenhancer', 17 'colorenhancer',
17 'highcontrast', 18 'highcontrast',
18 'longdesc', 19 'longdesc',
19 ] 20 ]
20 }, 21 },
21 { 22 {
22 'target_name': 'alt', 23 'target_name': 'alt',
23 'type': 'none', 24 'type': 'none',
24 'copies': [ 25 'copies': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'grit_grd_file': 'strings/accessibility_extensions_strings.grd', 59 'grit_grd_file': 'strings/accessibility_extensions_strings.grd',
59 'grit_out_dir': '<(dest_dir)/alt', 60 'grit_out_dir': '<(dest_dir)/alt',
60 # We don't generate any RC files, so no resource_ds file is needed. 61 # We don't generate any RC files, so no resource_ds file is needed.
61 'grit_resource_ids': '', 62 'grit_resource_ids': '',
62 }, 63 },
63 'includes': [ '../../../build/grit_action.gypi' ], 64 'includes': [ '../../../build/grit_action.gypi' ],
64 }, 65 },
65 ], 66 ],
66 }, 67 },
67 { 68 {
69 'target_name': 'animation',
70 'type': 'none',
71 'copies': [
72 {
73 'destination': '<(dest_dir)/animation',
74 'files': [
75 'animation/manifest.json',
76 'animation/popup.html',
77 'animation/popup.js',
78 'animation/animation.png',
79 ]
80 }
81 ],
82 'actions': [
83 {
84 'action_name': 'animation_strings',
85 'variables': {
86 'grit_grd_file': 'strings/accessibility_extensions_strings.grd',
87 'grit_out_dir': '<(dest_dir)/animation',
88 # We don't generate any RC files, so no resource_ds file is needed.
89 'grit_resource_ids': '',
90 },
91 'includes': [ '../../../build/grit_action.gypi' ],
92 },
93 ],
94 },
95 {
68 'target_name': 'caretbrowsing', 96 'target_name': 'caretbrowsing',
69 'type': 'none', 97 'type': 'none',
70 'copies': [ 98 'copies': [
71 { 99 {
72 'destination': '<(dest_dir)/caretbrowsing', 100 'destination': '<(dest_dir)/caretbrowsing',
73 'files': [ 101 'files': [
74 '../../../third_party/accessibility-audit/axs_testing.js', 102 '../../../third_party/accessibility-audit/axs_testing.js',
75 'caretbrowsing/background.js', 103 'caretbrowsing/background.js',
76 'caretbrowsing/caret_128.png', 104 'caretbrowsing/caret_128.png',
77 'caretbrowsing/caret_16.png', 105 'caretbrowsing/caret_16.png',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'grit_out_dir': '<(dest_dir)/longdesc', 238 'grit_out_dir': '<(dest_dir)/longdesc',
211 # We don't generate any RC files, so no resource_ds file is needed. 239 # We don't generate any RC files, so no resource_ds file is needed.
212 'grit_resource_ids': '', 240 'grit_resource_ids': '',
213 }, 241 },
214 'includes': [ '../../../build/grit_action.gypi' ], 242 'includes': [ '../../../build/grit_action.gypi' ],
215 }, 243 },
216 ], 244 ],
217 }, 245 },
218 ], 246 ],
219 } 247 }
OLDNEW
« no previous file with comments | « no previous file | ui/accessibility/extensions/animation/animation.png » ('j') | ui/accessibility/extensions/animation/popup.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698