OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'conditions': [ | |
7 ['chromeos==1 and disable_nacl==0 and disable_nacl_untrusted==0', { | |
8 'targets': [ | |
9 { | |
10 'target_name': 'chromevox_resources', | |
Peter Lundblad
2014/05/12 18:37:32
Please pick a unique target name so it is easier t
David Tseng
2014/05/12 20:33:38
Done.
| |
11 'type': 'none', | |
12 'copies': [ | |
13 { | |
14 'destination': '<(PRODUCT_DIR)/resources/chromeos/chromevox/chrome vox2/background', | |
Peter Lundblad
2014/05/12 18:37:32
Why don't you create chromevox_next under chromeos
David Tseng
2014/05/12 20:33:38
I created chromeos/chromevox2/chromevox2/*
This r
| |
15 'files': [ | |
16 'chromevox2/background/background.html', | |
Peter Lundblad
2014/05/12 18:37:32
Why do we need both a html file and js file for th
David Tseng
2014/05/12 20:33:38
The html file includes all other dependencies (e.g
| |
17 'chromevox2/background/background.js', | |
18 ], | |
19 }, | |
20 { | |
21 'destination': '<(PRODUCT_DIR)/resources/chromeos/chromevox/chrome vox2/injected', | |
22 'files': [ | |
23 'chromevox2/injected/injected.js', | |
24 ], | |
25 }, | |
26 ], | |
27 }, | |
28 ], | |
29 }], | |
30 ], | |
31 } | |
OLD | NEW |