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

Side by Side Diff: android_webview/android_webview.gyp

Issue 11189010: Make resource directory option in gyp template optional. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | android_webview/res/.keep » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'libwebview', 10 'target_name': 'libwebview',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d_java', 93 '../chrome/browser/component/components.gyp:web_contents_delegate_androi d_java',
94 '../chrome/chrome_resources.gyp:packed_extra_resources', 94 '../chrome/chrome_resources.gyp:packed_extra_resources',
95 '../chrome/chrome_resources.gyp:packed_resources', 95 '../chrome/chrome_resources.gyp:packed_resources',
96 '../content/content.gyp:content_java', 96 '../content/content.gyp:content_java',
97 '../media/media.gyp:media_java', 97 '../media/media.gyp:media_java',
98 '../net/net.gyp:net_java', 98 '../net/net.gyp:net_java',
99 '../ui/ui.gyp:ui_java', 99 '../ui/ui.gyp:ui_java',
100 'libwebview', 100 'libwebview',
101 ], 101 ],
102 'variables': { 102 'variables': {
103 'package_name': 'android_webview', 103 'package_name': 'android_webview',
cjhopman 2012/10/16 23:33:49 I think the android_webview_test_apk also uses the
shashi 2012/10/16 23:43:04 There are actual files in there :). On 2012/10/16
104 'apk_name': 'AndroidWebView', 104 'apk_name': 'AndroidWebView',
105 'manifest_package_name': 'org.chromium.android_webview', 105 'manifest_package_name': 'org.chromium.android_webview',
106 'java_in_dir': '../android_webview/java', 106 'java_in_dir': '../android_webview/java',
107 'resource_dir': '../res',
108 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebview.so'], 107 'native_libs_paths': ['<(SHARED_LIB_DIR)/libwebview.so'],
109 'input_pak_files': [ 108 'input_pak_files': [
110 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak', 109 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak',
111 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_100_percent.pak', 110 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome_100_percent.pak',
112 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak', 111 '<(SHARED_INTERMEDIATE_DIR)/repack/resources.pak',
113 '<(SHARED_INTERMEDIATE_DIR)/repack/en-US.pak', 112 '<(SHARED_INTERMEDIATE_DIR)/repack/en-US.pak',
114 ], 113 ],
115 'copied_pak_files': [ 114 'copied_pak_files': [
116 '<(PRODUCT_DIR)/android_webview/assets/chrome.pak', 115 '<(PRODUCT_DIR)/android_webview/assets/chrome.pak',
117 '<(PRODUCT_DIR)/android_webview/assets/chrome_100_percent.pak', 116 '<(PRODUCT_DIR)/android_webview/assets/chrome_100_percent.pak',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 'copies': [ 154 'copies': [
156 { 155 {
157 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', 156 'destination': '<(PRODUCT_DIR)/android_webview_test/assets',
158 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ] 157 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ]
159 }, 158 },
160 ], 159 ],
161 'includes': [ '../build/java_apk.gypi' ], 160 'includes': [ '../build/java_apk.gypi' ],
162 }, 161 },
163 ], 162 ],
164 } 163 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/res/.keep » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698