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

Unified Diff: remoting/remoting_test.gypi

Issue 984203003: Move mocks and unittest JS files to sit alongside production code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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 | « remoting/remoting_all.gyp ('k') | remoting/remoting_webapp.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_test.gypi
diff --git a/remoting/remoting_test.gypi b/remoting/remoting_test.gypi
index 467cbfeea40be29c8bcb6916330ad79bff644741..bd0ae5a89ef795ce3e7d297f4bd7d5513ed473d5 100644
--- a/remoting/remoting_test.gypi
+++ b/remoting/remoting_test.gypi
@@ -335,7 +335,7 @@
], # end of copies
}, # end of target 'remoting_browser_test_resources'
{
- 'target_name': 'remoting_webapp_unittest',
+ 'target_name': 'remoting_webapp_unittests',
'type': 'none',
'variables': {
'output_dir': '<(PRODUCT_DIR)/remoting/unittests',
@@ -372,32 +372,32 @@
'destination': '<(output_dir)',
'files': [
'<@(webapp_js_files)',
- '<@(remoting_webapp_unittest_all_files)',
+ '<@(remoting_webapp_unittests_all_files)',
],
},
],
'actions': [
{
- 'action_name': 'Build Remoting Webapp unittest.html',
+ 'action_name': 'Build Remoting Webapp unittests.html',
'inputs': [
'webapp/build-html.py',
- '<(remoting_webapp_unittest_template_main)',
+ '<(remoting_webapp_unittests_template_main)',
'<@(webapp_js_files)',
- '<@(remoting_webapp_unittest_all_js_files)'
+ '<@(remoting_webapp_unittests_all_js_files)'
],
'outputs': [
- '<(output_dir)/unittest.html',
+ '<(output_dir)/unittests.html',
],
'action': [
'python', 'webapp/build-html.py',
'<@(_outputs)',
- '<(remoting_webapp_unittest_template_main)',
+ '<(remoting_webapp_unittests_template_main)',
# GYP automatically removes subsequent duplicated command line
# arguments. Therefore, the excludejs flag must be set before the
# instrumentedjs flag or else GYP will ignore the files in the
# exclude list.
- '--exclude-js', '<@(remoting_webapp_unittest_exclude_js_files)',
- '--js', '<@(remoting_webapp_unittest_all_js_files)',
+ '--exclude-js', '<@(remoting_webapp_unittests_exclude_js_files)',
+ '--js', '<@(remoting_webapp_unittests_all_js_files)',
'--instrument-js', '<@(webapp_js_files)',
],
},
« no previous file with comments | « remoting/remoting_all.gyp ('k') | remoting/remoting_webapp.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698