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

Side by Side Diff: third_party/android_webview_glue/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: Update DEPS Created 6 years, 3 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 | « third_party/android_webview_glue/README.chromium ('k') | no next file » | 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 'app_manifest_version_code': '999999',
18 'java_in_dir': 'src/chromium',
19 'java_in_dir_suffix': '/java',
20 'native_lib_target': 'libwebviewchromium',
21 'never_lint': 1,
22 'resource_dir': 'src/chromium/res',
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: crbug.com/405035 Find a better solution for WebView .pak files.
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 'files': [],
44 'conditions': [
45 ['icu_use_data_file_flag==1', {
46 'files': [
47 '<(PRODUCT_DIR)/icudtl.dat',
48 ],
49 }],
50 ],
51 },
52 ],'includes': [ '../../build/java_apk.gypi' ],
53 },
54 ],
55 }
56
OLDNEW
« no previous file with comments | « third_party/android_webview_glue/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698