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

Side by Side Diff: chrome/chrome_resources.gyp

Issue 272013002: Provide skeleton for ChromeVox next. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Check port name. Created 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html',
8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i nternal/additional_modules_list.txt', 8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i nternal/additional_modules_list.txt',
9 'omnibox_mojom_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/om nibox/omnibox.mojom.js', 9 'omnibox_mojom_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/ui/webui/om nibox/omnibox.mojom.js',
10 }, 10 },
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 }, 105 },
106 ], 106 ],
107 'copies': [ 107 'copies': [
108 { 108 {
109 'destination': '<(PRODUCT_DIR)/resources/extension/demo', 109 'destination': '<(PRODUCT_DIR)/resources/extension/demo',
110 'files': [ 110 'files': [
111 'browser/resources/extension_resource/demo/library.js', 111 'browser/resources/extension_resource/demo/library.js',
112 ], 112 ],
113 }, 113 },
114 ], 114 ],
115 }], 115 }],
Peter Lundblad 2014/05/12 18:37:32 nit: indentation.
David Tseng 2014/05/12 20:33:38 Done.
116 ['chromeos==1 and disable_nacl==0 and disable_nacl_untrusted==0', { 116 ['chromeos==1 and disable_nacl==0 and disable_nacl_untrusted==0', {
117 'conditions': [
118 # TODO(dtseng): Remove use_chromevox_next once ChromeVox Next is rea dy for testing.
119 ['use_chromevox_next==1', {
120 'dependencies': [
121 'browser/resources/chromeos/chromevox_next/chromevox.gyp:chromev ox_resources',
122 ],
123 }],
124 ],
117 'copies' : [ 125 'copies' : [
118 { 126 {
119 'destination': '<(PRODUCT_DIR)/resources/chromeos/braille_ime', 127 'destination': '<(PRODUCT_DIR)/resources/chromeos/braille_ime',
120 'files': [ 128 'files': [
121 'browser/resources/chromeos/braille_ime/manifest.json', 129 'browser/resources/chromeos/braille_ime/manifest.json',
122 ], 130 ],
123 }, 131 },
124 ], 132 ],
125 'dependencies': [ 133 'dependencies': [
126 '../chrome/third_party/chromevox/chromevox.gyp:chromevox_resources', 134 '../chrome/third_party/chromevox/chromevox.gyp:chromevox_resources',
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/chrom evox', 535 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/resources/chromeos/chrom evox',
528 # We don't generate any RC files, so no resource_ds file is needed. 536 # We don't generate any RC files, so no resource_ds file is needed.
529 'grit_resource_ids': '', 537 'grit_resource_ids': '',
530 }, 538 },
531 'includes': [ '../build/grit_action.gypi' ], 539 'includes': [ '../build/grit_action.gypi' ],
532 }, 540 },
533 ], 541 ],
534 }, 542 },
535 ], # targets 543 ], # targets
536 } 544 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698