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.
5 # This GYPI allows independent customization of the chrome shell in a manner
6 # similar to content shell (in content_shell.gypi). Notably, this file does
7 # NOT contain chrome_android_core, which is independent of the chrome shell
8 # and should be separately customized.
11 'package_name': 'chrome_shell_apk',
15 # GN: //chrome/android:chrome_shell_base
16 'target_name': 'libchromeshell_base',
17 'type': 'static_library',
19 '../base/base.gyp:base',
20 'chrome_android_core',
21 'chrome.gyp:browser_ui',
22 '../content/content.gyp:content_app_browser',
25 'android/shell/chrome_shell_google_location_settings_helper.cc',
26 'android/shell/chrome_shell_google_location_settings_helper.h',
32 [ 'order_profiling!=0', {
35 'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ],
39 [ 'use_allocator!="none"', {
41 '../base/allocator/allocator.gyp:allocator', ],
44 'direct_dependent_settings': {
46 # Some android targets still depend on --gc-sections to link.
47 # TODO: remove --gc-sections for Debug builds (crbug.com/159847).
55 # GN: //chrome/android:chrome_shell
56 'target_name': 'libchromeshell',
57 'type': 'shared_library',
59 # This file must always be included in the shared_library step to ensure
60 # JNI_OnLoad is exported.
61 'app/android/chrome_jni_onload.cc',
62 'android/shell/chrome_main_delegate_chrome_shell_android.cc',
63 'android/shell/chrome_main_delegate_chrome_shell_android.h',
66 'libchromeshell_base',
70 # GN: //chrome/android:chrome_sync_shell
71 'target_name': 'libchromesyncshell',
72 'type': 'shared_library',
74 # This file must always be included in the shared_library step to ensure
75 # JNI_OnLoad is exported.
76 'app/android/chrome_jni_onload.cc',
77 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc',
78 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h',
81 'libchromeshell_base',
82 '../sync/sync.gyp:test_support_sync_fake_server_android',
86 # GN: //chrome/android:chrome_shell_manifest
87 'target_name': 'chrome_shell_manifest',
90 'jinja_inputs': ['android/shell/java/AndroidManifest.xml'],
91 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/chrome_shell_manifest/AndroidManifest.xml',
93 'includes': [ '../build/android/jinja_template.gypi' ],
96 # GN: //chrome/android:chrome_shell_apk
97 'target_name': 'chrome_shell_apk',
103 '../media/media.gyp:media_java',
106 'apk_name': 'ChromeShell',
107 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/chrome_shell_manifest/AndroidManifest.xml',
108 'native_lib_version_name': '<(version_full)',
109 'java_in_dir': 'android/shell/java',
110 'resource_dir': 'android/shell/res',
111 'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
112 'native_lib_target': 'libchromeshell',
113 'additional_input_paths': [
114 '<@(chrome_android_pak_output_resources)',
117 'includes': [ '../build/java_apk.gypi', ],
121 # chrome_shell_apk creates a .jar as a side effect. Any java targets
122 # that need that .jar in their classpath should depend on this target,
123 # chrome_shell_apk_java. Dependents of chrome_shell_apk receive its
124 # jar path in the variable 'apk_output_jar_path'.
125 # This target should only be used by targets which instrument
127 'target_name': 'chrome_shell_apk_java',
132 'includes': [ '../build/apk_fake_jar.gypi' ],
135 'target_name': 'chrome_shell_paks',
138 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
139 '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources',
143 'destination': '<(chrome_android_pak_output_folder)',
145 '<@(chrome_android_pak_input_resources)',
151 # GN: //chrome/android:chrome_sync_shell_apk
152 'target_name': 'chrome_sync_shell_apk',
157 'libchromesyncshell',
158 '../media/media.gyp:media_java',
159 '../sync/sync.gyp:sync_java_test_support',
162 'apk_name': 'ChromeSyncShell',
163 'android_manifest_path': 'android/sync_shell/java/AndroidManifest.xml',
164 'R_package': 'org.chromium.chrome.shell',
165 'native_lib_version_name': '<(version_full)',
166 'java_in_dir': 'android/shell/java',
167 'resource_dir': 'android/shell/res',
168 'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
169 'native_lib_target': 'libchromesyncshell',
170 'additional_input_paths': [
171 '<@(chrome_android_pak_output_resources)',
174 'includes': [ '../build/java_apk.gypi', ],
178 # chrome_sync_shell_apk creates a .jar as a side effect. Any java
179 # targets that need that .jar in their classpath should depend on this
180 # target. Dependents of chrome_sync_shell_apk receive its jar path in the
181 # variable 'apk_output_jar_path'. This target should only be used by
182 # targets which instrument chrome_sync_shell_apk.
183 'target_name': 'chrome_sync_shell_apk_java',
186 'chrome_sync_shell_apk',
188 'includes': [ '../build/apk_fake_jar.gypi' ],