OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 GYPI allows independent customization of the chrome shell in a manner | 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 | 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 | 7 # NOT contain chrome_android_core, which is independent of the chrome shell |
8 # and should be separately customized. | 8 # and should be separately customized. |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'target_name': 'libchromeshell', | 48 'target_name': 'libchromeshell', |
49 'type': 'shared_library', | 49 'type': 'shared_library', |
50 'sources': [ | 50 'sources': [ |
51 'android/shell/chrome_shell_entry_point.cc', | 51 'android/shell/chrome_shell_entry_point.cc', |
52 'android/shell/chrome_main_delegate_chrome_shell_android.cc', | 52 'android/shell/chrome_main_delegate_chrome_shell_android.cc', |
53 'android/shell/chrome_main_delegate_chrome_shell_android.h', | 53 'android/shell/chrome_main_delegate_chrome_shell_android.h', |
54 ], | 54 ], |
55 'dependencies': [ | 55 'dependencies': [ |
56 'libchromeshell_base', | 56 'libchromeshell_base', |
57 ], | 57 ], |
58 'includes': [ | |
59 # File 'protection' is based on non-trivial linker magic. TODO(pasko): | |
60 # remove it when crbug.com/424562 is fixed. | |
61 '../base/files/protect_file_posix.gypi', | |
62 ], | |
63 }, | 58 }, |
64 { | 59 { |
65 # GN: //chrome/android:chrome_sync_shell | 60 # GN: //chrome/android:chrome_sync_shell |
66 'target_name': 'libchromesyncshell', | 61 'target_name': 'libchromesyncshell', |
67 'type': 'shared_library', | 62 'type': 'shared_library', |
68 'sources': [ | 63 'sources': [ |
69 'android/shell/chrome_shell_entry_point.cc', | 64 'android/shell/chrome_shell_entry_point.cc', |
70 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', | 65 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', |
71 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h', | 66 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h', |
72 ], | 67 ], |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 'target_name': 'chrome_sync_shell_apk_java', | 166 'target_name': 'chrome_sync_shell_apk_java', |
172 'type': 'none', | 167 'type': 'none', |
173 'dependencies': [ | 168 'dependencies': [ |
174 'chrome_sync_shell_apk', | 169 'chrome_sync_shell_apk', |
175 ], | 170 ], |
176 'includes': [ '../build/apk_fake_jar.gypi' ], | 171 'includes': [ '../build/apk_fake_jar.gypi' ], |
177 }, | 172 }, |
178 ], | 173 ], |
179 | 174 |
180 } | 175 } |
OLD | NEW |