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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox_next/chromevox.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
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698