| 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 30 matching lines...) Expand all Loading... |
| 41 # Chrome shell should always use the statically-linked CLD data. | 41 # Chrome shell should always use the statically-linked CLD data. |
| 42 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ], | 42 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ], |
| 43 }], | 43 }], |
| 44 ], | 44 ], |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 # GN: //chrome/android:chrome_shell | 47 # GN: //chrome/android:chrome_shell |
| 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_main_delegate_chrome_shell_android.cc', | 52 'android/shell/chrome_main_delegate_chrome_shell_android.cc', |
| 52 'android/shell/chrome_main_delegate_chrome_shell_android.h', | 53 'android/shell/chrome_main_delegate_chrome_shell_android.h', |
| 53 ], | 54 ], |
| 54 'dependencies': [ | 55 'dependencies': [ |
| 55 'libchromeshell_base', | 56 'libchromeshell_base', |
| 56 ], | 57 ], |
| 57 'includes': [ | 58 'includes': [ |
| 58 # File 'protection' is based on non-trivial linker magic. TODO(pasko): | 59 # File 'protection' is based on non-trivial linker magic. TODO(pasko): |
| 59 # remove it when crbug.com/424562 is fixed. | 60 # remove it when crbug.com/424562 is fixed. |
| 60 '../base/files/protect_file_posix.gypi', | 61 '../base/files/protect_file_posix.gypi', |
| 61 ], | 62 ], |
| 62 }, | 63 }, |
| 63 { | 64 { |
| 64 # GN: //chrome/android:chrome_sync_shell | 65 # GN: //chrome/android:chrome_sync_shell |
| 65 'target_name': 'libchromesyncshell', | 66 'target_name': 'libchromesyncshell', |
| 66 'type': 'shared_library', | 67 'type': 'shared_library', |
| 67 'sources': [ | 68 'sources': [ |
| 69 'android/shell/chrome_shell_entry_point.cc', |
| 68 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', | 70 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', |
| 69 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h', | 71 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.h', |
| 70 ], | 72 ], |
| 71 'dependencies': [ | 73 'dependencies': [ |
| 72 'libchromeshell_base', | 74 'libchromeshell_base', |
| 73 '../sync/sync.gyp:test_support_sync_fake_server_android', | 75 '../sync/sync.gyp:test_support_sync_fake_server_android', |
| 74 ], | 76 ], |
| 75 }, | 77 }, |
| 76 { | 78 { |
| 77 # GN: //chrome/android:chrome_shell_manifest | 79 # GN: //chrome/android:chrome_shell_manifest |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'target_name': 'chrome_sync_shell_apk_java', | 170 'target_name': 'chrome_sync_shell_apk_java', |
| 169 'type': 'none', | 171 'type': 'none', |
| 170 'dependencies': [ | 172 'dependencies': [ |
| 171 'chrome_sync_shell_apk', | 173 'chrome_sync_shell_apk', |
| 172 ], | 174 ], |
| 173 'includes': [ '../build/apk_fake_jar.gypi' ], | 175 'includes': [ '../build/apk_fake_jar.gypi' ], |
| 174 }, | 176 }, |
| 175 ], | 177 ], |
| 176 | 178 |
| 177 } | 179 } |
| OLD | NEW |