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

Unified Diff: ui/webui/resources/js/compiled_resources.gyp

Issue 599203003: Implement recursive gyp dependencies for Closure Compilation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@J_jsevalcontext
Patch Set: store depends in list Created 6 years, 3 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
Index: ui/webui/resources/js/compiled_resources.gyp
diff --git a/ui/webui/resources/js/compiled_resources.gyp b/ui/webui/resources/js/compiled_resources.gyp
index e053c18cdac71e014c92da56d66790b99f6c0354..6335528ae553e94f05f46ae3dbab1a0f58192de4 100644
--- a/ui/webui/resources/js/compiled_resources.gyp
+++ b/ui/webui/resources/js/compiled_resources.gyp
@@ -17,6 +17,13 @@
},
{
'target_name': 'load_time_data',
+ 'variables': {
+ 'depends': [
+ '../../../../third_party/jstemplate/util.js',
+ '../../../../third_party/jstemplate/jsevalcontext.js',
+ '../../../../third_party/jstemplate/jstemplate.js',
+ ],
+ },
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
@@ -44,7 +51,7 @@
{
'target_name': 'i18n_template_no_process',
'variables': {
- 'depends': ['load_time_data.js'],
+ 'depends': ['compiled_resources.gyp:load_time_data'],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
@@ -55,7 +62,7 @@
{
'target_name': 'i18n_template2',
'variables': {
- 'depends': ['load_time_data.js'],
+ 'depends': ['compiled_resources.gyp:load_time_data'],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},

Powered by Google App Engine
This is Rietveld 408576698