Delete chrome.mediaGalleriesPrivate because the functionality unique to it has since...
[chromium-blink-merge.git] / chrome / chrome_shell.gypi
blob247ae5eaa06f35b5cfd9f77931c1425326c04ddc
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.
10   'variables': {
11     'package_name': 'chrome_shell_apk',
12   },
13   'targets': [
14     {
15       # GN: //chrome/android:chrome_shell_base
16       'target_name': 'libchromeshell_base',
17       'type': 'none',
18       'dependencies': [
19         '../base/base.gyp:base',
20         'chrome_android_core',
21         'chrome.gyp:browser_ui',
22         '../content/content.gyp:content_app_browser',
23       ],
24       'direct_dependent_settings': {
25         'ldflags': [
26           # Some android targets still depend on --gc-sections to link.
27           # TODO: remove --gc-sections for Debug builds (crbug.com/159847).
28           '-Wl,--gc-sections',
29         ],
30       },
31       'conditions': [
32         [ 'order_profiling!=0', {
33           'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ],
34         }],
35         [ 'use_allocator!="none"', {
36           'dependencies': [
37             '../base/allocator/allocator.gyp:allocator', ],
38         }],
39         [ 'cld_version==0 or cld_version==2', {
40           'dependencies': [
41             # Chrome shell should always use the statically-linked CLD data.
42             '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
43         }],
44       ],
45     },
46     {
47       # GN: //chrome/android:chrome_shell
48       'target_name': 'libchromeshell',
49       'type': 'shared_library',
50       'sources': [
51         # This file must always be included in the shared_library step to ensure
52         # JNI_OnLoad is exported.
53         'app/android/chrome_jni_onload.cc',
54         'android/shell/chrome_main_delegate_chrome_shell_android.cc',
55         'android/shell/chrome_main_delegate_chrome_shell_android.h',
56       ],
57       'dependencies': [
58         'libchromeshell_base',
59       ],
60       'includes': [
61         # File 'protection' is based on non-trivial linker magic. TODO(pasko):
62         # remove it when crbug.com/424562 is fixed.
63         '../base/files/protect_file_posix.gypi',
64       ],
65     },
66     {
67       # GN: //chrome/android:chrome_sync_shell
68       'target_name': 'libchromesyncshell',
69       'type': 'shared_library',
70       'sources': [
71         # This file must always be included in the shared_library step to ensure
72         # JNI_OnLoad is exported.
73         'app/android/chrome_jni_onload.cc',
74         'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc',
75         'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h',
76       ],
77       'dependencies': [
78         'libchromeshell_base',
79         '../sync/sync.gyp:test_support_sync_fake_server_android',
80       ],
81     },
82     {
83       # GN: //chrome/android:chrome_shell_manifest
84       'target_name': 'chrome_shell_manifest',
85       'type': 'none',
86       'variables': {
87         'jinja_inputs': ['android/shell/java/AndroidManifest.xml.jinja2'],
88         'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/chrome_shell_manifest/AndroidManifest.xml',
89       },
90       'includes': [ '../build/android/jinja_template.gypi' ],
91     },
92     {
93       # GN: //chrome/android:chrome_shell_apk
94       'target_name': 'chrome_shell_apk',
95       'type': 'none',
96       'dependencies': [
97         'chrome_java',
98         'chrome_shell_paks',
99         'libchromeshell',
100         '../media/media.gyp:media_java',
101       ],
102       'variables': {
103         'apk_name': 'ChromeShell',
104         'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/chrome_shell_manifest/AndroidManifest.xml',
105         'native_lib_version_name': '<(version_full)',
106         'java_in_dir': 'android/shell/java',
107         'resource_dir': 'android/shell/res',
108         'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
109         'native_lib_target': 'libchromeshell',
110         'additional_input_paths': [
111           '<@(chrome_android_pak_output_resources)',
112         ],
113       },
114       'includes': [ '../build/java_apk.gypi', ],
115     },
116     {
117       # GN: N/A
118       # chrome_shell_apk creates a .jar as a side effect. Any java targets
119       # that need that .jar in their classpath should depend on this target,
120       # chrome_shell_apk_java. Dependents of chrome_shell_apk receive its
121       # jar path in the variable 'apk_output_jar_path'.
122       # This target should only be used by targets which instrument
123       # chrome_shell_apk.
124       'target_name': 'chrome_shell_apk_java',
125       'type': 'none',
126       'dependencies': [
127         'chrome_shell_apk',
128       ],
129       'includes': [ '../build/apk_fake_jar.gypi' ],
130     },
131     {
132       'target_name': 'chrome_shell_paks',
133       'type': 'none',
134       'dependencies': [
135         '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
136         '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources',
137       ],
138       'copies': [
139         {
140           'destination': '<(chrome_android_pak_output_folder)',
141           'files': [
142             '<@(chrome_android_pak_input_resources)',
143           ],
144         }
145       ],
146     },
147     {
148       # GN: //chrome/android:chrome_sync_shell_manifest
149       'target_name': 'chrome_sync_shell_manifest',
150       'type': 'none',
151       'variables': {
152         'jinja_inputs': ['android/sync_shell/java/AndroidManifest.xml.jinja2'],
153         'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/chrome_sync_shell_manifest/AndroidManifest.xml',
154       },
155       'includes': [ '../build/android/jinja_template.gypi' ],
156     },
157     {
158       # GN: //chrome/android:chrome_sync_shell_apk
159       'target_name': 'chrome_sync_shell_apk',
160       'type': 'none',
161       'dependencies': [
162         'chrome_java',
163         'chrome_shell_paks',
164         'libchromesyncshell',
165         '../media/media.gyp:media_java',
166         '../sync/sync.gyp:sync_java_test_support',
167       ],
168       'variables': {
169         'apk_name': 'ChromeSyncShell',
170         'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/chrome_sync_shell_manifest/AndroidManifest.xml',
171         'R_package': 'org.chromium.chrome.shell',
172         'native_lib_version_name': '<(version_full)',
173         'java_in_dir': 'android/shell/java',
174         'resource_dir': 'android/shell/res',
175         'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
176         'native_lib_target': 'libchromesyncshell',
177         'additional_input_paths': [
178           '<@(chrome_android_pak_output_resources)',
179         ],
180       },
181       'includes': [ '../build/java_apk.gypi', ],
182     },
183     {
184       # GN: N/A
185       # chrome_sync_shell_apk creates a .jar as a side effect. Any java
186       # targets that need that .jar in their classpath should depend on this
187       # target. Dependents of chrome_sync_shell_apk receive its jar path in the
188       # variable 'apk_output_jar_path'. This target should only be used by
189       # targets which instrument chrome_sync_shell_apk.
190       'target_name': 'chrome_sync_shell_apk_java',
191       'type': 'none',
192       'dependencies': [
193         'chrome_sync_shell_apk',
194       ],
195       'includes': [ '../build/apk_fake_jar.gypi' ],
196     },
197   ],