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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'sources': [ | 58 'sources': [ |
59 # This file must always be included in the shared_library step to ensure | 59 # This file must always be included in the shared_library step to ensure |
60 # JNI_OnLoad is exported. | 60 # JNI_OnLoad is exported. |
61 'app/android/chrome_jni_onload.cc', | 61 'app/android/chrome_jni_onload.cc', |
62 'android/shell/chrome_main_delegate_chrome_shell_android.cc', | 62 'android/shell/chrome_main_delegate_chrome_shell_android.cc', |
63 'android/shell/chrome_main_delegate_chrome_shell_android.h', | 63 'android/shell/chrome_main_delegate_chrome_shell_android.h', |
64 ], | 64 ], |
65 'dependencies': [ | 65 'dependencies': [ |
66 'libchromeshell_base', | 66 'libchromeshell_base', |
67 ], | 67 ], |
| 68 'includes': [ |
| 69 '../base/files/protect_file_posix.gypi', |
| 70 ], |
68 }, | 71 }, |
69 { | 72 { |
70 # GN: //chrome/android:chrome_sync_shell | 73 # GN: //chrome/android:chrome_sync_shell |
71 'target_name': 'libchromesyncshell', | 74 'target_name': 'libchromesyncshell', |
72 'type': 'shared_library', | 75 'type': 'shared_library', |
73 'sources': [ | 76 'sources': [ |
74 # This file must always be included in the shared_library step to ensure | 77 # This file must always be included in the shared_library step to ensure |
75 # JNI_OnLoad is exported. | 78 # JNI_OnLoad is exported. |
76 'app/android/chrome_jni_onload.cc', | 79 'app/android/chrome_jni_onload.cc', |
77 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', | 80 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'target_name': 'chrome_sync_shell_apk_java', | 186 'target_name': 'chrome_sync_shell_apk_java', |
184 'type': 'none', | 187 'type': 'none', |
185 'dependencies': [ | 188 'dependencies': [ |
186 'chrome_sync_shell_apk', | 189 'chrome_sync_shell_apk', |
187 ], | 190 ], |
188 'includes': [ '../build/apk_fake_jar.gypi' ], | 191 'includes': [ '../build/apk_fake_jar.gypi' ], |
189 }, | 192 }, |
190 ], | 193 ], |
191 | 194 |
192 } | 195 } |
OLD | NEW |