diff options
author | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-24 17:13:20 +0000 |
---|---|---|
committer | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-24 17:13:20 +0000 |
commit | 99d88771a76f5355e4cc271f501880ddd8cc64b4 (patch) | |
tree | 010041ea0b52d0b6d4234aba6ec2c508ed0e290a /remoting/remoting.gyp | |
parent | ac239a8025e5d779f9372a0fe559e8c1ce1e42f7 (diff) | |
download | chromium_src-99d88771a76f5355e4cc271f501880ddd8cc64b4.zip chromium_src-99d88771a76f5355e4cc271f501880ddd8cc64b4.tar.gz chromium_src-99d88771a76f5355e4cc271f501880ddd8cc64b4.tar.bz2 |
Add build step to verify the l10n strings are not out of sync.
BUG=None
TEST=Manual
Review URL: http://codereview.chromium.org/7631055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98064 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/remoting.gyp')
-rw-r--r-- | remoting/remoting.gyp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index 91eed9a..8a16164 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -235,6 +235,7 @@ ], 'sources': [ 'webapp/build-webapp.py', + 'webapp/verify-webapp.py', '<@(remoting_it2me_files)', '<@(remoting_it2me_os_files)', '<@(remoting_it2me_locale_files)', @@ -247,6 +248,30 @@ # when the actual project is generated. 'actions': [ { + 'action_name': 'Verify It2Me WebApp i18n', + 'inputs': [ + 'webapp/verify-webapp.py', + 'webapp/me2mom/_locales/en/messages.json', + 'webapp/me2mom/choice.html', + 'webapp/me2mom/manifest.json', + 'webapp/me2mom/remoting.js', + 'host/plugin/host_script_object.cc', + ], + 'outputs': [ + '<(PRODUCT_DIR)/remoting/it2me_verified.stamp', + ], + 'action': [ + 'python', + 'webapp/verify-webapp.py', + '<(PRODUCT_DIR)/remoting/it2me_verified.stamp', + 'webapp/me2mom/_locales/en/messages.json', + 'webapp/me2mom/choice.html', + 'webapp/me2mom/manifest.json', + 'webapp/me2mom/remoting.js', + 'host/plugin/host_script_object.cc', + ], + }, + { 'action_name': 'Build It2Me WebApp', 'output_dir': '<(PRODUCT_DIR)/remoting/it2me.webapp', 'plugin_path': '<(PRODUCT_DIR)/<(plugin_prefix)remoting_host_plugin.<(plugin_extension)', |