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 '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 Loading... | |
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 Loading... | |
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 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)', | |
dcheng
2015/12/01 01:03:30
This is slightly horrible, but it seems to be the
| |
740 'files': [ | |
741 '<(PRODUCT_DIR)/blink_test_plugin.plugin', | |
742 ], | |
743 }, | |
744 { | |
738 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', | 745 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', |
739 'files': [ | 746 'files': [ |
740 '<(PRODUCT_DIR)/crash_inspector', | 747 '<(PRODUCT_DIR)/crash_inspector', |
741 '<(PRODUCT_DIR)/crash_report_sender.app' | 748 '<(PRODUCT_DIR)/crash_report_sender.app' |
742 ], | 749 ], |
743 }, | 750 }, |
744 ], | 751 ], |
745 'conditions': [ | 752 'conditions': [ |
746 ['icu_use_data_file_flag==1', { | 753 ['icu_use_data_file_flag==1', { |
747 'mac_bundle_resources': [ | 754 'mac_bundle_resources': [ |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
999 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1006 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1000 '--destination_dir', '<(dest_dir)', | 1007 '--destination_dir', '<(dest_dir)', |
1001 ], | 1008 ], |
1002 }, | 1009 }, |
1003 ], | 1010 ], |
1004 }, | 1011 }, |
1005 ], | 1012 ], |
1006 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1013 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1007 ] | 1014 ] |
1008 } | 1015 } |
OLD | NEW |