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

Side by Side Diff: ui/file_manager/gallery/js/gallery_scripts.js

Issue 2678723002: Compile several targets in Gallery in gyp v2. (Closed)
Patch Set: Rebased. Created 3 years, 10 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
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 // The include directives are put into Javascript-style comments to prevent 5 // The include directives are put into Javascript-style comments to prevent
6 // parsing errors in non-flattened mode. The flattener still sees them. 6 // parsing errors in non-flattened mode. The flattener still sees them.
7 // Note that this makes the flattener to comment out the first line of the 7 // Note that this makes the flattener to comment out the first line of the
8 // included file but that's all right since any javascript file should start 8 // included file but that's all right since any javascript file should start
9 // with a copyright comment anyway. 9 // with a copyright comment anyway.
10 10
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // <include src="../../file_manager/foreground/js/thumbnail_loader.js"> 58 // <include src="../../file_manager/foreground/js/thumbnail_loader.js">
59 // <include src="../../file_manager/foreground/js/ui/file_manager_dialog_base.js "> 59 // <include src="../../file_manager/foreground/js/ui/file_manager_dialog_base.js ">
60 // <include src="../../file_manager/foreground/js/ui/files_alert_dialog.js"> 60 // <include src="../../file_manager/foreground/js/ui/files_alert_dialog.js">
61 // <include src="../../file_manager/foreground/js/ui/files_confirm_dialog.js"> 61 // <include src="../../file_manager/foreground/js/ui/files_confirm_dialog.js">
62 // <include src="../../file_manager/foreground/js/ui/share_dialog.js"> 62 // <include src="../../file_manager/foreground/js/ui/share_dialog.js">
63 // <include src="../../file_manager/foreground/js/volume_manager_wrapper.js"> 63 // <include src="../../file_manager/foreground/js/volume_manager_wrapper.js">
64 64
65 // <include src="image_editor/image_util.js"> 65 // <include src="image_editor/image_util.js">
66 // <include src="image_editor/viewport.js"> 66 // <include src="image_editor/viewport.js">
67 // <include src="image_editor/image_buffer.js"> 67 // <include src="image_editor/image_buffer.js">
68 // <include src="image_editor/image_loader.js">
68 // <include src="image_editor/image_view.js"> 69 // <include src="image_editor/image_view.js">
69 // <include src="image_editor/commands.js"> 70 // <include src="image_editor/commands.js">
70 // <include src="image_editor/image_editor.js"> 71 // <include src="image_editor/image_editor.js">
71 // <include src="image_editor/image_transform.js"> 72 // <include src="image_editor/image_transform.js">
72 // <include src="image_editor/image_adjust.js"> 73 // <include src="image_editor/image_adjust.js">
73 // <include src="image_editor/image_resize.js"> 74 // <include src="image_editor/image_resize.js">
74 // <include src="image_editor/filter.js"> 75 // <include src="image_editor/filter.js">
75 // <include src="image_editor/image_encoder.js"> 76 // <include src="image_editor/image_encoder.js">
76 // <include src="image_editor/exif_encoder.js"> 77 // <include src="image_editor/exif_encoder.js">
77 78
78 // <include src="dimmable_ui_controller.js"> 79 // <include src="dimmable_ui_controller.js">
79 // <include src="entry_list_watcher.js"> 80 // <include src="entry_list_watcher.js">
80 // <include src="error_banner.js"> 81 // <include src="error_banner.js">
81 // <include src="gallery_data_model.js"> 82 // <include src="gallery_data_model.js">
82 // <include src="gallery_item.js"> 83 // <include src="gallery_item.js">
83 // <include src="gallery_util.js"> 84 // <include src="gallery_util.js">
84 // <include src="ribbon.js"> 85 // <include src="ribbon.js">
85 // <include src="slide_mode.js"> 86 // <include src="slide_mode.js">
86 // <include src="thumbnail_mode.js"> 87 // <include src="thumbnail_mode.js">
87 // <include src="gallery.js"> 88 // <include src="gallery.js">
88 89
89 // Exports 90 // Exports
90 window.ImageUtil = ImageUtil; 91 window.ImageUtil = ImageUtil;
91 window.ImageUtil.metrics = metrics; 92 window.metrics = metrics;
92 window.Gallery = Gallery; 93 window.Gallery = Gallery;
93 94
94 window.reload = reload; // will be called by the background. 95 window.reload = reload; // will be called by the background.
95 window.gallery = gallery; // for debug. 96 window.gallery = gallery; // for debug.
96 97
97 })(); 98 })();
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/js/gallery_item_unittest.js ('k') | ui/file_manager/gallery/js/image_editor/compiled_resources2.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698