Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(703)

Side by Side Diff: chrome/chrome_shell.gypi

Issue 676873004: Intercept file Open/Close (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/android/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 # File 'protection' is based on non-trivial linker magic. TODO(pasko):
70 # remove it when crbug.com/424562 is fixed.
71 '../base/files/protect_file_posix.gypi',
72 ],
68 }, 73 },
69 { 74 {
70 # GN: //chrome/android:chrome_sync_shell 75 # GN: //chrome/android:chrome_sync_shell
71 'target_name': 'libchromesyncshell', 76 'target_name': 'libchromesyncshell',
72 'type': 'shared_library', 77 'type': 'shared_library',
73 'sources': [ 78 'sources': [
74 # This file must always be included in the shared_library step to ensure 79 # This file must always be included in the shared_library step to ensure
75 # JNI_OnLoad is exported. 80 # JNI_OnLoad is exported.
76 'app/android/chrome_jni_onload.cc', 81 'app/android/chrome_jni_onload.cc',
77 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc', 82 'android/sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'target_name': 'chrome_sync_shell_apk_java', 188 'target_name': 'chrome_sync_shell_apk_java',
184 'type': 'none', 189 'type': 'none',
185 'dependencies': [ 190 'dependencies': [
186 'chrome_sync_shell_apk', 191 'chrome_sync_shell_apk',
187 ], 192 ],
188 'includes': [ '../build/apk_fake_jar.gypi' ], 193 'includes': [ '../build/apk_fake_jar.gypi' ],
189 }, 194 },
190 ], 195 ],
191 196
192 } 197 }
OLDNEW
« no previous file with comments | « chrome/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698