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

Unified Diff: android_webview/android_webview.gyp

Issue 255613003: Move ui and content resources into one location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing headers Created 6 years, 6 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 | « android_webview/Android.mk ('k') | android_webview/build/AndroidManifest.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/android_webview.gyp
diff --git a/android_webview/android_webview.gyp b/android_webview/android_webview.gyp
index 2d7c31fd64a6c1de1896b2c56b38aa5c53e1c3c3..5052ad05f014af2661c13f551141a972a7fdf4fd 100644
--- a/android_webview/android_webview.gyp
+++ b/android_webview/android_webview.gyp
@@ -266,12 +266,34 @@
}, { # android_webview_build==1
'targets': [
{
- 'target_name': 'android_webview_strings',
+ 'target_name': 'android_webview_jarjar_ui_resources',
+ 'android_unmangled_name': 1,
+ 'type': 'none',
+ 'variables': {
+ 'res_dir': '../ui/android/java/res',
+ 'rules_file': '../android_webview/build/jarjar-rules.txt',
+ },
+ 'includes': ['../android_webview/build/jarjar_resources.gypi'],
+ },
+ {
+ 'target_name': 'android_webview_jarjar_content_resources',
+ 'android_unmangled_name': 1,
+ 'type': 'none',
+ 'variables': {
+ 'res_dir': '../content/public/android/java/res',
+ 'rules_file': '../android_webview/build/jarjar-rules.txt',
+ },
+ 'includes': ['../android_webview/build/jarjar_resources.gypi'],
+ },
+ {
+ 'target_name': 'android_webview_resources',
'type': 'none',
'android_unmangled_name': 1,
'dependencies': [
'../content/content.gyp:content_strings_grd',
'../ui/android/ui_android.gyp:ui_strings_grd',
+ 'android_webview_jarjar_ui_resources',
+ 'android_webview_jarjar_content_resources'
],
},
],
« no previous file with comments | « android_webview/Android.mk ('k') | android_webview/build/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698