diff options
author | torne <torne@chromium.org> | 2014-08-29 11:40:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-29 18:41:50 +0000 |
commit | c7cee69c4ae1b6b41564a92378ef6c8a92a57174 (patch) | |
tree | b45a01e56f6cdbd618227ad06e4e5e6d342ec544 /android_webview | |
parent | ac4bd76186fe18f358f95f1e3057f1f720795386 (diff) | |
download | chromium_src-c7cee69c4ae1b6b41564a92378ef6c8a92a57174.zip chromium_src-c7cee69c4ae1b6b41564a92378ef6c8a92a57174.tar.gz chromium_src-c7cee69c4ae1b6b41564a92378ef6c8a92a57174.tar.bz2 |
Sort jarjar resource list for makefile stability.
Sort the list of input resource files for the jarjar resource step so
that the contents of generated makefiles in WebView have a stable
ordering.
BUG=
Review URL: https://codereview.chromium.org/516293003
Cr-Commit-Position: refs/heads/master@{#292671}
Diffstat (limited to 'android_webview')
-rw-r--r-- | android_webview/build/jarjar_resources.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/build/jarjar_resources.gypi b/android_webview/build/jarjar_resources.gypi index 17838c6..0f6cb06 100644 --- a/android_webview/build/jarjar_resources.gypi +++ b/android_webview/build/jarjar_resources.gypi @@ -23,7 +23,7 @@ 'variables': { 'intermediate_dir': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', 'jarjar_stamp': '<(intermediate_dir)/jarjar_resources.stamp', - 'resource_input_paths': ['<!@(find <(res_dir) -type f)'], + 'resource_input_paths': ['<!@(find <(res_dir) -type f | sort)'], }, 'actions': [{ 'action_name': 'jarjar resources', |