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

Side by Side Diff: ui/file_manager/gallery/js/compiled_resources.gyp

Issue 801533006: Add type annotations to gallery/js/gallery.js. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unnecessary annotations. Created 6 years 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
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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'background', 7 'target_name': 'background',
8 'variables': { 8 'variables': {
9 'depends': [ 9 'depends': [
10 '../../../../third_party/jstemplate/compiled_resources.gyp:jstemplate' , 10 '../../../../third_party/jstemplate/compiled_resources.gyp:jstemplate' ,
11 '../../../webui/resources/js/cr.js', 11 '../../../webui/resources/js/cr.js',
12 '../../../webui/resources/js/cr/event_target.js', 12 '../../../webui/resources/js/cr/event_target.js',
13 '../../../webui/resources/js/cr/ui/array_data_model.js', 13 '../../../webui/resources/js/cr/ui/array_data_model.js',
14 '../../../webui/resources/js/cr/ui/dialogs.js', 14 '../../../webui/resources/js/cr/ui/dialogs.js',
15 '../../../webui/resources/js/load_time_data.js', 15 '../../../webui/resources/js/load_time_data.js',
16 '../../file_manager/common/js/util.js', 16 '../../file_manager/common/js/util.js',
17 '../../file_manager/common/js/async_util.js', 17 '../../file_manager/common/js/async_util.js',
18 '../../file_manager/common/js/volume_manager_common.js', 18 '../../file_manager/common/js/volume_manager_common.js',
19 '../../file_manager/background/js/volume_manager.js', 19 '../../file_manager/background/js/volume_manager.js',
20 '../../file_manager/common/js/error_util.js', 20 '../../file_manager/common/js/error_util.js',
21 '../../file_manager/common/js/file_type.js' 21 '../../file_manager/common/js/file_type.js'
22 ], 22 ],
23 'externs': [ 23 'externs': [
24 '<(CLOSURE_DIR)/externs/chrome_send_externs.js', 24 '<(CLOSURE_DIR)/externs/chrome_send_externs.js',
25 '<(CLOSURE_DIR)/externs/chrome_extensions.js', 25 '<(CLOSURE_DIR)/externs/chrome_extensions.js',
26 '<(CLOSURE_DIR)/externs/file_manager_private.js', 26 '<(CLOSURE_DIR)/externs/file_manager_private.js',
27 '../../externs/chrome_app_window.js', 27 '../../externs/chrome_app_window.js',
28 '../../externs/gallery.js', 28 '../../externs/gallery_background.js',
29 ], 29 ],
30 }, 30 },
31 'includes': [ 31 'includes': [
32 '../../../../third_party/closure_compiler/compile_js.gypi' 32 '../../../../third_party/closure_compiler/compile_js.gypi'
33 ], 33 ],
34 }, 34 },
35 { 35 {
36 'target_name': 'gallery_scripts', 36 'target_name': 'gallery_scripts',
37 'variables': { 37 'variables': {
38 'depends': [ 38 'depends': [
39 '../../../../third_party/jstemplate/compiled_resources.gyp:jstemplate' , 39 '../../../../third_party/jstemplate/compiled_resources.gyp:jstemplate' ,
40 '../../file_manager/background/js/volume_manager.js', 40 '../../file_manager/background/js/volume_manager.js',
41 '../../file_manager/common/js/volume_manager_common.js', 41 '../../file_manager/common/js/volume_manager_common.js',
42 '../../file_manager/common/js/async_util.js', 42 '../../file_manager/common/js/async_util.js',
43 ], 43 ],
44 'externs': [ 44 'externs': [
45 '<(CLOSURE_DIR)/externs/chrome_send_externs.js', 45 '<(CLOSURE_DIR)/externs/chrome_send_externs.js',
46 '<(CLOSURE_DIR)/externs/chrome_extensions.js', 46 '<(CLOSURE_DIR)/externs/chrome_extensions.js',
47 '<(CLOSURE_DIR)/externs/file_manager_private.js', 47 '<(CLOSURE_DIR)/externs/file_manager_private.js',
48 '<(CLOSURE_DIR)/externs/metrics_private.js', 48 '<(CLOSURE_DIR)/externs/metrics_private.js',
49 '../../externs/exif_entry.js', 49 '../../externs/exif_entry.js',
50 '../../externs/gallery.js', 50 '../../externs/gallery_foreground.js',
51 ], 51 ],
52 }, 52 },
53 'includes': [ 53 'includes': [
54 '../../../../third_party/closure_compiler/compile_js.gypi' 54 '../../../../third_party/closure_compiler/compile_js.gypi'
55 ], 55 ],
56 } 56 }
57 ], 57 ],
58 } 58 }
59 59
60 60
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698