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

Side by Side Diff: ui/file_manager/zip_archiver/unpacker/js/build-config.js

Issue 2804453002: Move files from zip_archiver/unpacker/ to zip_archiver/. (Closed)
Patch Set: Move files from zip_archiver/unpacker/ to zip_archiver/. Created 3 years, 8 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
(Empty)
1 // Copyright 2014 The Chromium OS 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 'use strict';
6
7 /**
8 * Namespace with build configuration options.
9 * @type {Object}
10 */
11 var buildConfig = {
12 /**
13 * The path to the module's configuration file, which should be a .nmf file.
14 * For NaCl use 'newlib/[Release|Debug]/module.nmf' and for PNaCl use
15 * 'pnacl/[Release|Debug]/module.nmf'. Defaults to PNaCl.
16 * @type {string}
17 */
18 BUILD_MODULE_PATH: 'pnacl/Debug/module.nmf',
19
20 /**
21 * The mime type of the NaCl executable. For NaCl use 'application/x-nacl'
22 * and for PNaCl use 'application/x-pnacl'. Defaults to PNaCl.
23 * @type {string}
24 */
25 BUILD_MODULE_TYPE: 'application/x-pnacl'
26 };
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/unpacker/js/background.js ('k') | ui/file_manager/zip_archiver/unpacker/js/compressor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698