diff options
author | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-11 18:20:54 +0000 |
---|---|---|
committer | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-11 18:20:54 +0000 |
commit | 6cd02789b1734de2d46ef6f591c5a3bc0b05ec4d (patch) | |
tree | 6b64b30391bd27cf361c1310dd2cf76274a865c9 /build | |
parent | f20310d165f2176a91e433da8aa656918bdeb052 (diff) | |
download | chromium_src-6cd02789b1734de2d46ef6f591c5a3bc0b05ec4d.zip chromium_src-6cd02789b1734de2d46ef6f591c5a3bc0b05ec4d.tar.gz chromium_src-6cd02789b1734de2d46ef6f591c5a3bc0b05ec4d.tar.bz2 |
[Android] Fix managed install.
It was missing a comma, breaking gyp.
BUG=158821
TBR=cjhopman
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/13945019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193686 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/java_apk.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi index a051a03..8521742 100644 --- a/build/java_apk.gypi +++ b/build/java_apk.gypi @@ -332,7 +332,7 @@ '<(final_apk_path)', ], 'outputs': [ - '<(apk_install_stamp)' + '<(apk_install_stamp)', # If a user switches the connected device, the APK may need to be # installed even if there have been no changes. To ensure that the # APK on the device is always up-to-date, this step should always |