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 'includes': [ '../chromevox/common.gypi', ], | 8 'includes': [ '../chromevox/common.gypi', ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'variables': { | |
Peter Lundblad
2014/09/22 09:00:46
Variables put here will only apply to the chromevo
David Tseng
2014/09/22 17:23:12
Done.
| |
12 'use_chromevox_next': 1, | |
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', |
18 'chromevox2_resources', | 21 'chromevox2_resources', |
19 '../chromevox/chromevox.gyp:chromevox_resources', | 22 '../chromevox/chromevox.gyp:chromevox_resources', |
20 ], | 23 ], |
(...skipping 33 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 |