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

Side by Side Diff: content/content_shell.gypi

Issue 1480303002: Implement a basic PPAPI plugin for Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android after https://codereview.chromium.org/1478633002 Created 5 years 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 | « no previous file | content/public/test/ppapi_test_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'content_shell_version': '99.77.34.5', 8 'content_shell_version': '99.77.34.5',
9 'conditions': [ 9 'conditions': [
10 ['OS=="linux"', { 10 ['OS=="linux"', {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 '../components/url_formatter/url_formatter.gyp:url_formatter', 55 '../components/url_formatter/url_formatter.gyp:url_formatter',
56 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 56 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
57 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', 57 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
58 '../gin/gin.gyp:gin', 58 '../gin/gin.gyp:gin',
59 '../gpu/gpu.gyp:gpu', 59 '../gpu/gpu.gyp:gpu',
60 '../ipc/ipc.gyp:ipc', 60 '../ipc/ipc.gyp:ipc',
61 '../media/blink/media_blink.gyp:media_blink', 61 '../media/blink/media_blink.gyp:media_blink',
62 '../media/media.gyp:media', 62 '../media/media.gyp:media',
63 '../net/net.gyp:net', 63 '../net/net.gyp:net',
64 '../net/net.gyp:net_resources', 64 '../net/net.gyp:net_resources',
65 '../ppapi/ppapi_internal.gyp:blink_test_plugin',
65 '../skia/skia.gyp:skia', 66 '../skia/skia.gyp:skia',
66 '../storage/storage_browser.gyp:storage', 67 '../storage/storage_browser.gyp:storage',
67 '../third_party/WebKit/public/blink.gyp:blink', 68 '../third_party/WebKit/public/blink.gyp:blink',
68 '../third_party/WebKit/public/blink.gyp:blink_test_support', 69 '../third_party/WebKit/public/blink.gyp:blink_test_support',
69 '../testing/gmock.gyp:gmock', 70 '../testing/gmock.gyp:gmock',
70 '../testing/gtest.gyp:gtest', 71 '../testing/gtest.gyp:gtest',
71 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 72 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
72 '../ui/base/ui_base.gyp:ui_base', 73 '../ui/base/ui_base.gyp:ui_base',
73 '../ui/events/events.gyp:events_base', 74 '../ui/events/events.gyp:events_base',
74 '../ui/gfx/gfx.gyp:gfx', 75 '../ui/gfx/gfx.gyp:gfx',
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 'action': ['../build/mac/tweak_info_plist.py', 729 'action': ['../build/mac/tweak_info_plist.py',
729 '--breakpad=1', 730 '--breakpad=1',
730 '--keystone=0', 731 '--keystone=0',
731 '--scm=1', 732 '--scm=1',
732 '--version=<(content_shell_version)', 733 '--version=<(content_shell_version)',
733 '--branding=<(content_shell_product_name)'], 734 '--branding=<(content_shell_product_name)'],
734 }, 735 },
735 ], 736 ],
736 'copies': [ 737 'copies': [
737 { 738 {
739 # PPAPI test plugins are loaded relative to DIR_MODULE. On OS X,
740 # that corresponds to Content Shell Framework.framework.
741 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)',
742 'files': [
743 '<(PRODUCT_DIR)/blink_test_plugin.plugin',
744 ],
745 },
746 {
738 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', 747 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources',
739 'files': [ 748 'files': [
740 '<(PRODUCT_DIR)/crash_inspector', 749 '<(PRODUCT_DIR)/crash_inspector',
741 '<(PRODUCT_DIR)/crash_report_sender.app' 750 '<(PRODUCT_DIR)/crash_report_sender.app'
742 ], 751 ],
743 }, 752 },
744 ], 753 ],
745 'conditions': [ 754 'conditions': [
746 ['icu_use_data_file_flag==1', { 755 ['icu_use_data_file_flag==1', {
747 'mac_bundle_resources': [ 756 'mac_bundle_resources': [
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 1008 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
1000 '--destination_dir', '<(dest_dir)', 1009 '--destination_dir', '<(dest_dir)',
1001 ], 1010 ],
1002 }, 1011 },
1003 ], 1012 ],
1004 }, 1013 },
1005 ], 1014 ],
1006 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 1015 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
1007 ] 1016 ]
1008 } 1017 }
OLDNEW
« no previous file with comments | « no previous file | content/public/test/ppapi_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698