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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox2/chromevox.gyp

Issue 536233002: Begin introducing some of the initial pieces for ChromeVox next commands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chromeos_conversions
Patch Set: Rebase. 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 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['chromeos==1 and disable_nacl==0 and disable_nacl_untrusted==0', { 7 ['chromeos==1 and disable_nacl==0 and disable_nacl_untrusted==0', {
8 'includes': [ '../chromevox/common.gypi', ], 8 'includes': [ '../chromevox/common.gypi', ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 13 matching lines...) Expand all
24 'type': 'none', 24 'type': 'none',
25 'variables': { 25 'variables': {
26 'dest_dir': '<(chromevox_dest_dir)', 26 'dest_dir': '<(chromevox_dest_dir)',
27 'js_root_flags': [ 27 'js_root_flags': [
28 '-r', '.', 28 '-r', '.',
29 '-r', '<(closure_goog_dir)', 29 '-r', '<(closure_goog_dir)',
30 ], 30 ],
31 }, 31 },
32 'sources': [ 32 'sources': [
33 'cvox2/background/loader.js', 33 'cvox2/background/loader.js',
34 'cvox2/injected/loader.js',
35 ], 34 ],
36 'includes': [ '../chromevox/copy_js.gypi', ], 35 'includes': [ '../chromevox/copy_js.gypi', ],
37 }, 36 },
38 { 37 {
39 'target_name': 'chromevox2_deps', 38 'target_name': 'chromevox2_deps',
40 'type': 'none', 39 'type': 'none',
41 'variables': { 40 'variables': {
42 'deps_js_output_file': '<(chromevox_dest_dir)/deps.js', 41 'deps_js_output_file': '<(chromevox_dest_dir)/deps.js',
43 }, 42 },
44 'sources': [ 43 'sources': [
45 'cvox2/background/loader.js', 44 'cvox2/background/loader.js',
46 'cvox2/injected/loader.js',
47 ], 45 ],
48 'includes': ['../chromevox/generate_deps.gypi'], 46 'includes': ['../chromevox/generate_deps.gypi'],
49 }, 47 },
50 { 48 {
51 'target_name': 'chromevox2_resources', 49 'target_name': 'chromevox2_resources',
52 'type': 'none', 50 'type': 'none',
53 'copies': [ 51 'copies': [
54 { 52 {
55 'destination': '<(PRODUCT_DIR)/resources/chromeos/chromevox/cvox2/ background', 53 'destination': '<(PRODUCT_DIR)/resources/chromeos/chromevox/cvox2/ background',
56 'files': [ 54 'files': [
(...skipping 16 matching lines...) Expand all
73 'variables': { 71 'variables': {
74 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json', 72 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json',
75 'is_guest_manifest': 1, 73 'is_guest_manifest': 1,
76 }, 74 },
77 'includes': [ '../chromevox/generate_manifest.gypi', ], 75 'includes': [ '../chromevox/generate_manifest.gypi', ],
78 }, 76 },
79 ], 77 ],
80 }], 78 }],
81 ], 79 ],
82 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698