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

Side by Side Diff: android_webview/android_webview_glue.gypi

Issue 477903003: Make the WebView apk build in the Chrome tree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change package_name Created 6 years, 4 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 | « android_webview/android_webview.gyp ('k') | android_webview/android_webview_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [
6 {
7 'target_name': 'system_webview_apk',
8 'type': 'none',
9 'dependencies': [
10 'libwebviewchromium',
11 'android_webview_java',
12 'android_webview_pak',
13 ],
14 'variables': {
15 'android_sdk_jar': '../third_party/android_platform/webview/frameworks.j ar',
16 'apk_name': 'SystemWebView',
17 'java_in_dir': '../android_webview/glue/chromium',
18 'java_in_dir_suffix': '/java',
19 'native_lib_target': 'libwebviewchromium',
20 'never_lint': 1,
21 'resource_dir': 'glue/chromium/res',
22 'package_name': 'system_webview_apk',
23 'R_package': 'com.android.webview.chromium',
24 'R_package_relpath': 'com/android/webview/chromium',
25 'extensions_to_not_compress': 'pak',
26 'asset_location': '<(PRODUCT_DIR)/android_webview_assets',
27 # TODO: Find a better solution for WebView .pak files.
mkosiba (inactive) 2014/08/20 10:51:19 add the bug number please
28 'additional_input_paths': [
29 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
30 '<(PRODUCT_DIR)/android_webview_assets/en-US.pak',
31 ],
32 'conditions': [
33 ['icu_use_data_file_flag==1', {
34 'additional_input_paths': [
35 '<(PRODUCT_DIR)/icudtl.dat',
36 ],
37 }],
38 ],
39 },
40 'copies': [
41 {
42 'destination': '<(PRODUCT_DIR)/android_webview_assets',
43 'conditions': [
44 ['icu_use_data_file_flag==1', {
45 'files': [
46 '<(PRODUCT_DIR)/icudtl.dat',
47 ],
48 }],
49 ],
50 },
51 ],'includes': [ '../build/java_apk.gypi' ],
52 },
53 ],
54 }
55
OLDNEW
« no previous file with comments | « android_webview/android_webview.gyp ('k') | android_webview/android_webview_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698