OLD | NEW |
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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 '../media/media.gyp:media_java', | 170 '../media/media.gyp:media_java', |
171 '../net/net.gyp:net_java', | 171 '../net/net.gyp:net_java', |
172 '../ui/ui.gyp:ui_java', | 172 '../ui/ui.gyp:ui_java', |
173 'android_webview_java', | 173 'android_webview_java', |
174 'libwebview', | 174 'libwebview', |
175 ], | 175 ], |
176 'variables': { | 176 'variables': { |
177 'package_name': 'android_webview_test', | 177 'package_name': 'android_webview_test', |
178 'apk_name': 'AndroidWebViewTest', | 178 'apk_name': 'AndroidWebViewTest', |
179 'java_in_dir': '../android_webview/javatests', | 179 'java_in_dir': '../android_webview/javatests', |
180 'resource_dir': '../res', | 180 'resource_dir': 'res', |
181 }, | 181 }, |
| 182 'copies': [ |
| 183 { |
| 184 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', |
| 185 'files': [ '<!@(find <(java_in_dir)/assets -type f -name "*")' ] |
| 186 }, |
| 187 ], |
182 'includes': [ '../build/java_apk.gypi' ], | 188 'includes': [ '../build/java_apk.gypi' ], |
183 }, | 189 }, |
184 ], | 190 ], |
185 } | 191 } |
OLD | NEW |