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

Unified Diff: ui/file_manager/image_loader/compiled_resources2.gyp

Issue 2634213003: Compile image loader in v2 syntax. (Closed)
Patch Set: Fix a unit test. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/file_manager/image_loader/compiled_resources.gyp ('k') | ui/file_manager/image_loader/image_loader.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/image_loader/compiled_resources2.gyp
diff --git a/ui/file_manager/image_loader/compiled_resources2.gyp b/ui/file_manager/image_loader/compiled_resources2.gyp
index 33876c51f3dbe483b4d13fb096e0c25ddd404a04..6da3d3cb8766bd8739ba3c10b05a1e9604810497 100644
--- a/ui/file_manager/image_loader/compiled_resources2.gyp
+++ b/ui/file_manager/image_loader/compiled_resources2.gyp
@@ -3,33 +3,73 @@
# found in the LICENSE file.
{
'targets': [
-# {
-# 'target_name': 'background',
-# 'includes': ['../compile_js2.gypi'],
-# },
-# {
-# 'target_name': 'cache',
-# 'includes': ['../compile_js2.gypi'],
-# },
-# {
-# 'target_name': 'image_loader',
-# 'includes': ['../compile_js2.gypi'],
-# },
-# {
-# 'target_name': 'image_loader_client',
-# 'includes': ['../compile_js2.gypi'],
-# },
-# {
-# 'target_name': 'piex_loader',
-# 'includes': ['../compile_js2.gypi'],
-# },
-# {
-# 'target_name': 'request',
-# 'includes': ['../compile_js2.gypi'],
-# },
-# {
-# 'target_name': 'scheduler',
-# 'includes': ['../compile_js2.gypi'],
-# },
+ {
+ 'target_name': 'background',
+ 'dependencies': [
+ 'image_loader',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'cache',
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'image_loader',
+ 'dependencies': [
+ '<(EXTERNS_GYP):chrome_extensions',
+ '<(EXTERNS_GYP):file_manager_private',
+ 'cache',
+ 'piex_loader',
+ 'request',
+ 'scheduler',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'image_loader_util',
+ 'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:assert',
+ '<(EXTERNS_GYP):file_manager_private',
+ 'piex_loader',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'image_loader_client',
+ 'dependencies': [
+ '../file_manager/common/js/compiled_resources2.gyp:lru_cache',
+ '<(EXTERNS_GYP):chrome_extensions',
+ '<(EXTERNS_GYP):metrics_private',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'piex_loader',
+ 'dependencies': [
+ '../file_manager/foreground/js/metadata/compiled_resources2.gyp:image_orientation',
+ '<(EXTERNS_GYP):file_manager_private',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'request',
+ 'dependencies': [
+ '../file_manager/common/js/compiled_resources2.gyp:file_type',
+ '../file_manager/common/js/compiled_resources2.gyp:metrics',
+ '../file_manager/common/js/compiled_resources2.gyp:metrics_events',
+ 'cache',
+ 'image_loader_util',
+ 'piex_loader',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'scheduler',
+ 'dependencies': [
+ 'request',
+ ],
+ 'includes': ['../compile_js2.gypi'],
+ },
],
}
« no previous file with comments | « ui/file_manager/image_loader/compiled_resources.gyp ('k') | ui/file_manager/image_loader/image_loader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698