OLD | NEW |
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 'variables': { |
| 9 'use_chromevox_next': 1, |
| 10 }, |
8 'includes': [ '../chromevox/common.gypi', ], | 11 'includes': [ '../chromevox/common.gypi', ], |
9 'targets': [ | 12 'targets': [ |
10 { | 13 { |
11 'target_name': 'chromevox2', | 14 'target_name': 'chromevox2', |
12 'type': 'none', | 15 'type': 'none', |
13 'dependencies': [ | 16 'dependencies': [ |
14 'chromevox2_copied_scripts', | 17 'chromevox2_copied_scripts', |
15 'chromevox2_deps', | 18 'chromevox2_deps', |
16 'chromevox2_manifest', | 19 'chromevox2_manifest', |
17 'chromevox2_guest_manifest', | 20 'chromevox2_guest_manifest', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'files': [ | 57 'files': [ |
55 'cvox2/background/background.html', | 58 'cvox2/background/background.html', |
56 ], | 59 ], |
57 }, | 60 }, |
58 ], | 61 ], |
59 }, | 62 }, |
60 { | 63 { |
61 'target_name': 'chromevox2_manifest', | 64 'target_name': 'chromevox2_manifest', |
62 'type': 'none', | 65 'type': 'none', |
63 'variables': { | 66 'variables': { |
64 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json' | 67 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next.json' |
65 }, | 68 }, |
66 'includes': [ '../chromevox/generate_manifest.gypi', ], | 69 'includes': [ '../chromevox/generate_manifest.gypi', ], |
67 }, | 70 }, |
68 { | 71 { |
69 'target_name': 'chromevox2_guest_manifest', | 72 'target_name': 'chromevox2_guest_manifest', |
70 'type': 'none', | 73 'type': 'none', |
71 'variables': { | 74 'variables': { |
72 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json', | 75 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next_guest.j
son', |
73 'is_guest_manifest': 1, | 76 'is_guest_manifest': 1, |
74 }, | 77 }, |
75 'includes': [ '../chromevox/generate_manifest.gypi', ], | 78 'includes': [ '../chromevox/generate_manifest.gypi', ], |
76 }, | 79 }, |
77 ], | 80 ], |
78 }], | 81 }], |
79 ], | 82 ], |
80 } | 83 } |
OLD | NEW |