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

Side by Side Diff: content/content_shell.gypi

Issue 864563002: Separate JNI registration with initialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build Created 5 years, 11 months 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'variables': { 6 'variables': {
7 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 # The "19" is so that sites that sniff for version think that this is 8 # The "19" is so that sites that sniff for version think that this is
9 # something reasonably current; the "77.34.5" is a hint that this isn't a 9 # something reasonably current; the "77.34.5" is a hint that this isn't a
10 # standard Chrome. 10 # standard Chrome.
(...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 'dependencies': [ 1008 'dependencies': [
1009 'content_shell_jni_headers', 1009 'content_shell_jni_headers',
1010 'content_shell_lib', 1010 'content_shell_lib',
1011 'content_shell_pak', 1011 'content_shell_pak',
1012 # Skia is necessary to ensure the dependencies needed by 1012 # Skia is necessary to ensure the dependencies needed by
1013 # WebContents are included. 1013 # WebContents are included.
1014 '../skia/skia.gyp:skia', 1014 '../skia/skia.gyp:skia',
1015 '<(DEPTH)/media/media.gyp:player_android', 1015 '<(DEPTH)/media/media.gyp:player_android',
1016 ], 1016 ],
1017 'sources': [ 1017 'sources': [
1018 'shell/android/shell_jni_onload_delegate.cc',
1019 'shell/android/shell_jni_onload_delegate.h',
1018 'shell/android/shell_library_loader.cc', 1020 'shell/android/shell_library_loader.cc',
1019 'shell/android/shell_library_loader.h',
1020 ], 1021 ],
1021 'conditions': [ 1022 'conditions': [
1022 ['android_webview_build==1', { 1023 ['android_webview_build==1', {
1023 'ldflags': [ 1024 'ldflags': [
1024 '-lgabi++', # For rtti 1025 '-lgabi++', # For rtti
1025 ], 1026 ],
1026 }], 1027 }],
1027 ], 1028 ],
1028 }, 1029 },
1029 { 1030 {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1168 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1168 '--destination_dir', '<(dest_dir)', 1169 '--destination_dir', '<(dest_dir)',
1169 ], 1170 ],
1170 }, 1171 },
1171 ], 1172 ],
1172 }, 1173 },
1173 ], 1174 ],
1174 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1175 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1175 ] 1176 ]
1176 } 1177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698