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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/android_webview_glue/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/android_webview_glue/android_webview_glue.gypi
diff --git a/third_party/android_webview_glue/android_webview_glue.gypi b/third_party/android_webview_glue/android_webview_glue.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..fed278f4633dc5b59844ee8d2c7b07af66784e67
--- /dev/null
+++ b/third_party/android_webview_glue/android_webview_glue.gypi
@@ -0,0 +1,56 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'system_webview_apk',
+ 'type': 'none',
+ 'dependencies': [
+ 'libwebviewchromium',
+ 'android_webview_java',
+ 'android_webview_pak',
+ ],
+ 'variables': {
+ 'android_sdk_jar': '../third_party/android_platform/webview/frameworks.jar',
+ 'apk_name': 'SystemWebView',
+ 'app_manifest_version_code': '999999',
+ 'java_in_dir': 'src/chromium',
+ 'java_in_dir_suffix': '/java',
+ 'native_lib_target': 'libwebviewchromium',
+ 'never_lint': 1,
+ 'resource_dir': 'src/chromium/res',
+ 'R_package': 'com.android.webview.chromium',
+ 'R_package_relpath': 'com/android/webview/chromium',
+ 'extensions_to_not_compress': 'pak',
+ 'asset_location': '<(PRODUCT_DIR)/android_webview_assets',
+ # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
+ 'additional_input_paths': [
+ '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
+ '<(PRODUCT_DIR)/android_webview_assets/en-US.pak',
+ ],
+ 'conditions': [
+ ['icu_use_data_file_flag==1', {
+ 'additional_input_paths': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ }],
+ ],
+ },
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)/android_webview_assets',
+ 'files': [],
+ 'conditions': [
+ ['icu_use_data_file_flag==1', {
+ 'files': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ }],
+ ],
+ },
+ ],'includes': [ '../../build/java_apk.gypi' ],
+ },
+ ],
+}
+
« 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