| OLD | NEW |
| 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 '../tools/android/forwarder/forwarder.gyp:forwarder', | 783 '../tools/android/forwarder/forwarder.gyp:forwarder', |
| 784 '../ui/android/ui_android.gyp:ui_java', | 784 '../ui/android/ui_android.gyp:ui_java', |
| 785 ], | 785 ], |
| 786 'variables': { | 786 'variables': { |
| 787 'apk_name': 'ContentShell', | 787 'apk_name': 'ContentShell', |
| 788 'manifest_package_name': 'org.chromium.content_shell_apk', | 788 'manifest_package_name': 'org.chromium.content_shell_apk', |
| 789 'java_in_dir': 'shell/android/shell_apk', | 789 'java_in_dir': 'shell/android/shell_apk', |
| 790 'resource_dir': 'shell/android/shell_apk/res', | 790 'resource_dir': 'shell/android/shell_apk/res', |
| 791 'native_lib_target': 'libcontent_shell_content_view', | 791 'native_lib_target': 'libcontent_shell_content_view', |
| 792 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 792 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
| 793 'asset_location': '<(ant_build_out)/content_shell/assets', | 793 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', |
| 794 }, | 794 }, |
| 795 'conditions': [ | 795 'conditions': [ |
| 796 ['android_webview_build==0', { | 796 ['android_webview_build==0', { |
| 797 'dependencies': [ | 797 'dependencies': [ |
| 798 '../tools/imagediff/image_diff.gyp:image_diff#host', | 798 '../tools/imagediff/image_diff.gyp:image_diff#host', |
| 799 ], | 799 ], |
| 800 }], | 800 }], |
| 801 ], | 801 ], |
| 802 'includes': [ '../build/java_apk.gypi' ], | 802 'includes': [ '../build/java_apk.gypi' ], |
| 803 }, | 803 }, |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 855 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 856 '--destination_dir', '<(dest_dir)', | 856 '--destination_dir', '<(dest_dir)', |
| 857 ], | 857 ], |
| 858 }, | 858 }, |
| 859 ], | 859 ], |
| 860 }, | 860 }, |
| 861 ], | 861 ], |
| 862 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 862 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 863 ] | 863 ] |
| 864 } | 864 } |
| OLD | NEW |