Chromium Code Reviews| Index: remoting/webapp/build-webapp.py |
| diff --git a/remoting/webapp/build-webapp.py b/remoting/webapp/build-webapp.py |
| index 979b593aab2b19df90be59b7a10e408fe08cfaa6..c30d3496cbbd2fe55dc5fcceaa6d59096c5e7577 100755 |
| --- a/remoting/webapp/build-webapp.py |
| +++ b/remoting/webapp/build-webapp.py |
| @@ -350,6 +350,8 @@ def buildWebApp(buildtype, version, destination, zip_path, |
| # For overriding the client ID/secret via env vars, see google_api_keys.py. |
| apiClientId = google_api_keys.GetClientID('REMOTING') |
| apiClientSecret = google_api_keys.GetClientSecret('REMOTING') |
| + apiClientSecret = google_api_keys.GetClientSecret('REMOTING') |
|
Jamie
2015/04/24 18:18:53
Duplicate line?
John Williams
2015/04/24 21:10:17
Fixed.
|
| + apiKey = google_api_keys.GetAPIKeyRemoting() |
| if is_app_remoting_webapp and buildtype != 'Dev': |
| if not app_client_id: |
| @@ -361,6 +363,7 @@ def buildWebApp(buildtype, version, destination, zip_path, |
| replaceString(destination, 'API_CLIENT_ID', apiClientId) |
| replaceString(destination, 'API_CLIENT_SECRET', apiClientSecret) |
| + replaceString(destination, 'API_KEY', apiKey) |
| # Write the application capabilities. |
| appCapabilities = ','.join( |