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

Side by Side Diff: chrome/chrome_dll_bundle.gypi

Issue 799643004: Combine PDF plugin into the Chromium binary. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 # This file contains resources for the main Mac chromium bundle. 5 # This file contains resources for the main Mac chromium bundle.
6 { 6 {
7 # The main browser executable's name is <(mac_product_name). 7 # The main browser executable's name is <(mac_product_name).
8 # Certain things will get confused if two modules in the 8 # Certain things will get confused if two modules in the
9 # executable share the same name, so append " Framework" to the 9 # executable share the same name, so append " Framework" to the
10 # product_name used for the framework. This will result in 10 # product_name used for the framework. This will result in
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 # common.gypi for more info. 69 # common.gypi for more info.
70 ], 70 ],
71 'mac_bundle_resources!': [ 71 'mac_bundle_resources!': [
72 'app/framework-Info.plist', 72 'app/framework-Info.plist',
73 ], 73 ],
74 'dependencies': [ 74 'dependencies': [
75 'app_mode_app', 75 'app_mode_app',
76 # Bring in pdfsqueeze and run it on all pdfs 76 # Bring in pdfsqueeze and run it on all pdfs
77 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', 77 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze',
78 '../crypto/crypto.gyp:crypto', 78 '../crypto/crypto.gyp:crypto',
79 '../pdf/pdf.gyp:pdf',
80 # On Mac, Flash gets put into the framework, so we need this 79 # On Mac, Flash gets put into the framework, so we need this
81 # dependency here. flash_player.gyp will copy the Flash bundle 80 # dependency here. flash_player.gyp will copy the Flash bundle
82 # into PRODUCT_DIR. 81 # into PRODUCT_DIR.
83 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', 82 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries',
84 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', 83 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter',
85 'chrome_resources.gyp:packed_extra_resources', 84 'chrome_resources.gyp:packed_extra_resources',
86 'chrome_resources.gyp:packed_resources', 85 'chrome_resources.gyp:packed_resources',
87 ], 86 ],
88 'rules': [ 87 'rules': [
89 { 88 {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 'copies': [ 139 'copies': [
141 { 140 {
142 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', 141 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
143 'files': [ 142 'files': [
144 '<(PRODUCT_DIR)/exif.so', 143 '<(PRODUCT_DIR)/exif.so',
145 '<(PRODUCT_DIR)/ffmpegsumo.so', 144 '<(PRODUCT_DIR)/ffmpegsumo.so',
146 ], 145 ],
147 }, 146 },
148 { 147 {
149 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins', 148 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins',
150 'files': [
151 '<(PRODUCT_DIR)/PDF.plugin',
152 ],
153 'conditions': [ 149 'conditions': [
154 ['disable_nacl!=1', { 150 ['disable_nacl!=1', {
155 'conditions': [ 151 'conditions': [
156 ['target_arch=="x64"', { 152 ['target_arch=="x64"', {
157 'files': [ 153 'files': [
158 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', 154 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
159 ], 155 ],
160 }, { 156 }, {
161 'files': [ 157 'files': [
162 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', 158 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 ], 299 ],
304 }], 300 }],
305 ['v8_use_external_startup_data==1', { 301 ['v8_use_external_startup_data==1', {
306 'mac_bundle_resources': [ 302 'mac_bundle_resources': [
307 '<(PRODUCT_DIR)/natives_blob.bin', 303 '<(PRODUCT_DIR)/natives_blob.bin',
308 '<(PRODUCT_DIR)/snapshot_blob.bin', 304 '<(PRODUCT_DIR)/snapshot_blob.bin',
309 ], 305 ],
310 }], 306 }],
311 ], # conditions 307 ], # conditions
312 } 308 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_exe.gypi » ('j') | pdf/pdf.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698