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

Side by Side Diff: build/java_apk.gypi

Issue 1181953002: Load non-locale .pak files directly from the .apk on Android (rather than extracting on start-up). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@raw-paks
Patch Set: fix unused LoadMainAndroidPackFile Created 5 years, 6 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # This file is meant to be included into a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to build Android APKs in a consistent manner. 6 # to build Android APKs in a consistent manner.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # { 9 # {
10 # 'target_name': 'my_package_apk', 10 # 'target_name': 'my_package_apk',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'proguard_flags_paths': ['<(generated_proguard_file)'], 82 'proguard_flags_paths': ['<(generated_proguard_file)'],
83 'jar_name': 'chromium_apk_<(_target_name).jar', 83 'jar_name': 'chromium_apk_<(_target_name).jar',
84 'resource_dir%':'<(DEPTH)/build/android/ant/empty/res', 84 'resource_dir%':'<(DEPTH)/build/android/ant/empty/res',
85 'R_package%':'', 85 'R_package%':'',
86 'include_all_resources%': 0, 86 'include_all_resources%': 0,
87 'additional_R_text_files': [], 87 'additional_R_text_files': [],
88 'dependencies_res_zip_paths': [], 88 'dependencies_res_zip_paths': [],
89 'additional_res_packages': [], 89 'additional_res_packages': [],
90 'additional_bundled_libs%': [], 90 'additional_bundled_libs%': [],
91 'is_test_apk%': 0, 91 'is_test_apk%': 0,
92 # Allow icu data and v8 snapshots to be loaded directly from the .apk. 92 # Allow icu data, v8 snapshots, and pak files to be loaded directly from the .apk.
93 'extensions_to_not_compress%': 'dat,bin', 93 # Note: These are actually suffix matches, not necessarily extensions.
94 'extensions_to_not_compress%': '.dat,.bin,.pak',
94 'resource_input_paths': [], 95 'resource_input_paths': [],
95 'intermediate_dir': '<(PRODUCT_DIR)/<(_target_name)', 96 'intermediate_dir': '<(PRODUCT_DIR)/<(_target_name)',
96 'asset_location%': '<(intermediate_dir)/assets', 97 'asset_location%': '<(intermediate_dir)/assets',
97 'codegen_stamp': '<(intermediate_dir)/codegen.stamp', 98 'codegen_stamp': '<(intermediate_dir)/codegen.stamp',
98 'package_input_paths': [], 99 'package_input_paths': [],
99 'ordered_libraries_file': '<(intermediate_dir)/native_libraries.json', 100 'ordered_libraries_file': '<(intermediate_dir)/native_libraries.json',
100 'additional_ordered_libraries_file': '<(intermediate_dir)/additional_native_ libraries.json', 101 'additional_ordered_libraries_file': '<(intermediate_dir)/additional_native_ libraries.json',
101 'native_libraries_template': '<(DEPTH)/base/android/java/templates/NativeLib raries.template', 102 'native_libraries_template': '<(DEPTH)/base/android/java/templates/NativeLib raries.template',
102 'native_libraries_java_dir': '<(intermediate_dir)/native_libraries_java/', 103 'native_libraries_java_dir': '<(intermediate_dir)/native_libraries_java/',
103 'native_libraries_java_file': '<(native_libraries_java_dir)/NativeLibraries. java', 104 'native_libraries_java_file': '<(native_libraries_java_dir)/NativeLibraries. java',
(...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after
1020 'native_libs_dir': '<(apk_package_native_libs_dir)', 1021 'native_libs_dir': '<(apk_package_native_libs_dir)',
1021 }, { 1022 }, {
1022 'native_libs_dir': '<(DEPTH)/build/android/ant/empty/res', 1023 'native_libs_dir': '<(DEPTH)/build/android/ant/empty/res',
1023 }], 1024 }],
1024 ], 1025 ],
1025 }, 1026 },
1026 'includes': ['android/apkbuilder_action.gypi'], 1027 'includes': ['android/apkbuilder_action.gypi'],
1027 }, 1028 },
1028 ], 1029 ],
1029 } 1030 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698