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

Side by Side Diff: android_webview/glue/android_webview_glue_common.gypi

Issue 802453002: [android_webview] Split out an apk folder from the glue folder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
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 'type': 'none',
6 'dependencies': [
7 '<(DEPTH)/android_webview/android_webview.gyp:libwebviewchromium',
8 '<(DEPTH)/android_webview/android_webview.gyp:android_webview_java',
9 '<(DEPTH)/android_webview/android_webview.gyp:android_webview_pak',
10 ],
11 'variables': {
12 'android_sdk_jar': '<(DEPTH)/third_party/android_platform/webview/frameworks _1622219.jar',
13 'java_in_dir': 'java',
14 'native_lib_target': 'libwebviewchromium',
15 'never_lint': 1,
16 'resource_dir': 'java/res',
17 'R_package': 'com.android.webview.chromium',
18 'R_package_relpath': 'com/android/webview/chromium',
19 'extensions_to_not_compress': 'pak',
20 'asset_location': '<(PRODUCT_DIR)/android_webview_assets',
21 'proguard_enabled': 'true',
22 'proguard_flags_paths': ['java/proguard.flags'],
23 # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
24 'additional_input_paths': [
25 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
26 '<(PRODUCT_DIR)/android_webview_assets/en-US.pak',
27 ],
28 'conditions': [
29 ['icu_use_data_file_flag==1', {
30 'additional_input_paths': [
31 '<(PRODUCT_DIR)/icudtl.dat',
32 ],
33 }],
34 ['v8_use_external_startup_data==1', {
35 'additional_input_paths': [
36 '<(PRODUCT_DIR)/natives_blob.bin',
37 '<(PRODUCT_DIR)/snapshot_blob.bin',
38 ],
39 }],
40 ],
41 },
42 'includes': [ '../../build/java_apk.gypi' ],
43 }
OLDNEW
« no previous file with comments | « android_webview/glue/android_webview_glue.gypi ('k') | android_webview/glue/java/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698