DevTools: Split RemotePage and RemotePageTarget
[chromium-blink-merge.git] / chrome / chrome_shell.gypi
blob20a7aae4fac1d58b6ef94a4eeea0316d7ca6e453
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': 'static_library',
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       'sources': [
25         'android/shell/chrome_shell_google_location_settings_helper.cc',
26         'android/shell/chrome_shell_google_location_settings_helper.h',
27       ],
28       'include_dirs': [
29         '../skia/config',
30       ],
31       'conditions': [
32         [ 'order_profiling!=0', {
33           'conditions': [
34             [ 'OS=="android"', {
35               'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ],
36             }],
37           ],
38         }],
39         [ 'use_allocator!="none"', {
40           'dependencies': [
41             '../base/allocator/allocator.gyp:allocator', ],
42         }],
43         ['OS=="android"', {
44           'direct_dependent_settings': {
45             'ldflags': [
46               # Some android targets still depend on --gc-sections to link.
47               # TODO: remove --gc-sections for Debug builds (crbug.com/159847).
48               '-Wl,--gc-sections',
49             ],
50           },
51         }],
52       ],
53     },
54     {
55       # GN: //chrome/android:chrome_shell
56       'target_name': 'libchromeshell',
57       'type': 'shared_library',
58       'sources': [
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',
64       ],
65       'dependencies': [
66         'libchromeshell_base',
67       ],
68     },
69     {
70       # GN: //chrome/android:chrome_sync_shell
71       'target_name': 'libchromesyncshell',
72       'type': 'shared_library',
73       'sources': [
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',
79       ],
80       'dependencies': [
81         'libchromeshell_base',
82         '../sync/sync.gyp:test_support_sync_fake_server_android',
83       ],
84     },
85     {
86       # GN: //chrome/android:chrome_shell_apk
87       'target_name': 'chrome_shell_apk',
88       'type': 'none',
89       'dependencies': [
90         'chrome_java',
91         'chrome_shell_paks',
92         'libchromeshell',
93         '../media/media.gyp:media_java',
94       ],
95       'variables': {
96         'apk_name': 'ChromeShell',
97         'native_lib_version_name': '<(version_full)',
98         'java_in_dir': 'android/shell/java',
99         'resource_dir': 'android/shell/res',
100         'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
101         'native_lib_target': 'libchromeshell',
102         'additional_input_paths': [
103           '<@(chrome_android_pak_output_resources)',
104         ],
105       },
106       'includes': [ '../build/java_apk.gypi', ],
107     },
108     {
109       # GN: N/A
110       # chrome_shell_apk creates a .jar as a side effect. Any java targets
111       # that need that .jar in their classpath should depend on this target,
112       # chrome_shell_apk_java. Dependents of chrome_shell_apk receive its
113       # jar path in the variable 'apk_output_jar_path'.
114       # This target should only be used by targets which instrument
115       # chrome_shell_apk.
116       'target_name': 'chrome_shell_apk_java',
117       'type': 'none',
118       'dependencies': [
119         'chrome_shell_apk',
120       ],
121       'includes': [ '../build/apk_fake_jar.gypi' ],
122     },
123     {
124       'target_name': 'chrome_shell_paks',
125       'type': 'none',
126       'dependencies': [
127         '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
128         '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources',
129       ],
130       'copies': [
131         {
132           'destination': '<(chrome_android_pak_output_folder)',
133           'files': [
134             '<@(chrome_android_pak_input_resources)',
135           ],
136         }
137       ],
138     },
139     {
140       # GN: //chrome/android:chrome_sync_shell_apk
141       'target_name': 'chrome_sync_shell_apk',
142       'type': 'none',
143       'dependencies': [
144         'chrome_java',
145         'chrome_shell_paks',
146         'libchromesyncshell',
147         '../media/media.gyp:media_java',
148         '../sync/sync.gyp:sync_java_test_support',
149       ],
150       'variables': {
151         'apk_name': 'ChromeSyncShell',
152         'android_manifest_path': 'android/sync_shell/java/AndroidManifest.xml',
153         'R_package': 'org.chromium.chrome.shell',
154         'native_lib_version_name': '<(version_full)',
155         'java_in_dir': 'android/shell/java',
156         'resource_dir': 'android/shell/res',
157         'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
158         'native_lib_target': 'libchromesyncshell',
159         'additional_input_paths': [
160           '<@(chrome_android_pak_output_resources)',
161         ],
162       },
163       'includes': [ '../build/java_apk.gypi', ],
164     },
165     {
166       # GN: N/A
167       # chrome_sync_shell_apk creates a .jar as a side effect. Any java
168       # targets that need that .jar in their classpath should depend on this
169       # target. Dependents of chrome_sync_shell_apk receive its jar path in the
170       # variable 'apk_output_jar_path'. This target should only be used by
171       # targets which instrument chrome_sync_shell_apk.
172       'target_name': 'chrome_sync_shell_apk_java',
173       'type': 'none',
174       'dependencies': [
175         'chrome_sync_shell_apk',
176       ],
177       'includes': [ '../build/apk_fake_jar.gypi' ],
178     },
179   ],