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

Side by Side Diff: android_webview/apk/system_webview_apk_common.gypi

Issue 808473003: [android_webview] Disable proguard for SystemWebViewGoogle. (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
« no previous file with comments | « no previous file | 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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 # When making changes remember that this is shared with the internal .apk 5 # When making changes remember that this is shared with the internal .apk
6 # build rules. 6 # build rules.
7 { 7 {
8 'type': 'none', 8 'type': 'none',
9 'dependencies': [ 9 'dependencies': [
10 '<(DEPTH)/android_webview/android_webview.gyp:libwebviewchromium', 10 '<(DEPTH)/android_webview/android_webview.gyp:libwebviewchromium',
11 '<(DEPTH)/android_webview/android_webview.gyp:android_webview_java', 11 '<(DEPTH)/android_webview/android_webview.gyp:android_webview_java',
12 '<(DEPTH)/android_webview/android_webview.gyp:android_webview_pak', 12 '<(DEPTH)/android_webview/android_webview.gyp:android_webview_pak',
13 ], 13 ],
14 'variables': { 14 'variables': {
15 'native_lib_target': 'libwebviewchromium', 15 'native_lib_target': 'libwebviewchromium',
16 'never_lint': 1, 16 'never_lint': 1,
17 'R_package': 'com.android.webview.chromium', 17 'R_package': 'com.android.webview.chromium',
18 'R_package_relpath': 'com/android/webview/chromium', 18 'R_package_relpath': 'com/android/webview/chromium',
19 'extensions_to_not_compress': 'pak', 19 'extensions_to_not_compress': 'pak',
20 'asset_location': '<(PRODUCT_DIR)/android_webview_assets', 20 'asset_location': '<(PRODUCT_DIR)/android_webview_assets',
21 'proguard_enabled': 'true', 21 # TODO: crbug.com/442348 Update proguard.flags and re-enable.
22 'proguard_enabled': 'false',
22 'proguard_flags_paths': ['<(DEPTH)/android_webview/apk/java/proguard.flags'] , 23 'proguard_flags_paths': ['<(DEPTH)/android_webview/apk/java/proguard.flags'] ,
23 # TODO: crbug.com/405035 Find a better solution for WebView .pak files. 24 # TODO: crbug.com/405035 Find a better solution for WebView .pak files.
24 'additional_input_paths': [ 25 'additional_input_paths': [
25 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak', 26 '<(PRODUCT_DIR)/android_webview_assets/webviewchromium.pak',
26 '<(PRODUCT_DIR)/android_webview_assets/en-US.pak', 27 '<(PRODUCT_DIR)/android_webview_assets/en-US.pak',
27 ], 28 ],
28 'conditions': [ 29 'conditions': [
29 ['icu_use_data_file_flag==1', { 30 ['icu_use_data_file_flag==1', {
30 'additional_input_paths': [ 31 'additional_input_paths': [
31 '<(PRODUCT_DIR)/icudtl.dat', 32 '<(PRODUCT_DIR)/icudtl.dat',
32 ], 33 ],
33 }], 34 }],
34 ['v8_use_external_startup_data==1', { 35 ['v8_use_external_startup_data==1', {
35 'additional_input_paths': [ 36 'additional_input_paths': [
36 '<(PRODUCT_DIR)/natives_blob.bin', 37 '<(PRODUCT_DIR)/natives_blob.bin',
37 '<(PRODUCT_DIR)/snapshot_blob.bin', 38 '<(PRODUCT_DIR)/snapshot_blob.bin',
38 ], 39 ],
39 }], 40 }],
40 ], 41 ],
41 }, 42 },
42 'includes': [ '../../build/java_apk.gypi' ], 43 'includes': [ '../../build/java_apk.gypi' ],
43 } 44 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698