Apply supervisor user password if change is detected when supervised user is logged in.
[chromium-blink-merge.git] / chrome / chrome_android.gypi
blob1109343998186e4a994e33da37a41ef8d6818bd6
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
3 # found in the LICENSE file.
5   'variables': {
6     'chromium_code': 1,
7     'package_name': 'chrome_shell_apk',
8   },
9   'includes': [
10     'chrome_android_paks.gypi', # Included for the list of pak resources.
11   ],
12   'targets': [
13     {
14       'target_name': 'libchromeshell',
15       'type': 'shared_library',
16       'dependencies': [
17         '../base/base.gyp:base',
18         'chrome_android_core',
19         'chrome.gyp:browser_ui',
20         '../content/content.gyp:content_app_browser',
21       ],
22       'sources': [
23         # This file must always be included in the shared_library step to ensure
24         # JNI_OnLoad is exported.
25         'app/android/chrome_jni_onload.cc',
26         'android/shell/chrome_main_delegate_chrome_shell_android.cc',
27         'android/shell/chrome_main_delegate_chrome_shell_android.h',
28         "android/shell/chrome_shell_google_location_settings_helper.cc",
29         "android/shell/chrome_shell_google_location_settings_helper.h",
30       ],
31       'include_dirs': [
32         '../skia/config',
33       ],
34       'conditions': [
35         [ 'order_profiling!=0', {
36           'conditions': [
37             [ 'OS=="android"', {
38               'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ],
39             }],
40           ],
41         }],
42         [ 'android_use_tcmalloc==1', {
43           'dependencies': [
44             '../base/allocator/allocator.gyp:allocator', ],
45         }],
46       ],
47     },
48     {
49       'target_name': 'chrome_shell_apk',
50       'type': 'none',
51       'dependencies': [
52         'chrome_java',
53         'chrome_shell_paks',
54         'libchromeshell',
55         '../media/media.gyp:media_java',
56       ],
57       'variables': {
58         'apk_name': 'ChromeShell',
59         'manifest_package_name': 'org.chromium.chrome.shell',
60         'java_in_dir': 'android/shell/java',
61         'resource_dir': 'android/shell/res',
62         'asset_location': '<(PRODUCT_DIR)/../assets/<(package_name)',
63         'native_lib_target': 'libchromeshell',
64         'native_lib_version_name': '<(version_full)',
65         'additional_input_paths': [
66           '<@(chrome_android_pak_output_resources)',
67         ],
68       },
69       'includes': [ '../build/java_apk.gypi', ],
70     },
71     {
72       # chrome_shell_apk creates a .jar as a side effect. Any java targets
73       # that need that .jar in their classpath should depend on this target,
74       # chrome_shell_apk_java. Dependents of chrome_shell_apk receive its
75       # jar path in the variable 'apk_output_jar_path'.
76       # This target should only be used by targets which instrument
77       # chrome_shell_apk.
78       'target_name': 'chrome_shell_apk_java',
79       'type': 'none',
80       'dependencies': [
81         'chrome_shell_apk',
82       ],
83       'includes': [ '../build/apk_fake_jar.gypi' ],
84     },
85     {
86       'target_name': 'chrome_android_core',
87       'type': 'static_library',
88       'dependencies': [
89         'chrome.gyp:browser',
90         'chrome.gyp:browser_ui',
91         'chrome.gyp:plugin',
92         'chrome.gyp:renderer',
93         'chrome.gyp:utility',
94         '../content/content.gyp:content',
95         '../content/content.gyp:content_app_browser',
96       ],
97       'include_dirs': [
98         '..',
99         '<(android_ndk_include)',
100       ],
101       'sources': [
102         'app/android/chrome_android_initializer.cc',
103         'app/android/chrome_android_initializer.h',
104         'app/android/chrome_main_delegate_android.cc',
105         'app/android/chrome_main_delegate_android.h',
106         'app/chrome_main_delegate.cc',
107         'app/chrome_main_delegate.h',
108       ],
109       'link_settings': {
110         'libraries': [
111           '-landroid',
112           '-ljnigraphics',
113         ],
114       },
115     },
116     {
117       'target_name': 'chrome_shell_paks',
118       'type': 'none',
119       'dependencies': [
120         '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
121         '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources',
122       ],
123       'copies': [
124         {
125           'destination': '<(chrome_android_pak_output_folder)',
126           'files': [
127             '<@(chrome_android_pak_input_resources)',
128           ],
129         }
130       ],
131     },
132   ],