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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 2799006: Update installer for internal plugin. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_exe.gypi » ('j') | chrome/installer/mini_installer/chrome.release » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chrome_dll_target': 0, 7 'chrome_dll_target': 0,
8 }, 8 },
9 'target_conditions': [ 9 'target_conditions': [
10 ['chrome_dll_target==1', { 10 ['chrome_dll_target==1', {
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 'app/framework-Info.plist', 281 'app/framework-Info.plist',
282 ], 282 ],
283 'dependencies': [ 283 'dependencies': [
284 # Bring in pdfsqueeze and run it on all pdfs 284 # Bring in pdfsqueeze and run it on all pdfs
285 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze', 285 '../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze',
286 '../build/util/support/support.gyp:*', 286 '../build/util/support/support.gyp:*',
287 # On Mac, Flash gets put into the framework, so we need this 287 # On Mac, Flash gets put into the framework, so we need this
288 # dependency here. flash_player.gyp will copy the Flash bundle 288 # dependency here. flash_player.gyp will copy the Flash bundle
289 # into PRODUCT_DIR. 289 # into PRODUCT_DIR.
290 '../third_party/adobe/flash/flash_player.gyp:flash_player', 290 '../third_party/adobe/flash/flash_player.gyp:flash_player',
291 'conditions': [
292 ['internal_pdf', {
viettrungluu 2010/06/15 01:45:43 When/where/how is internal_pdf set?
jam 2010/06/15 01:52:07 It's mapped in using supplemental gypi stuff, when
293 '../pdf/pdf.gyp:pdf',
294 }],
295 ],
291 ], 296 ],
292 'rules': [ 297 'rules': [
293 { 298 {
294 'rule_name': 'pdfsqueeze', 299 'rule_name': 'pdfsqueeze',
295 'extension': 'pdf', 300 'extension': 'pdf',
296 'inputs': [ 301 'inputs': [
297 '<(PRODUCT_DIR)/pdfsqueeze', 302 '<(PRODUCT_DIR)/pdfsqueeze',
298 ], 303 ],
299 'outputs': [ 304 'outputs': [
300 '<(INTERMEDIATE_DIR)/pdfsqueeze/<(RULE_INPUT_ROOT).pdf', 305 '<(INTERMEDIATE_DIR)/pdfsqueeze/<(RULE_INPUT_ROOT).pdf',
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 { 473 {
469 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne t Plug-Ins', 474 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne t Plug-Ins',
470 'files': [], 475 'files': [],
471 'conditions': [ 476 'conditions': [
472 [ 'branding == "Chrome"', { 477 [ 'branding == "Chrome"', {
473 'files': [ 478 'files': [
474 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', 479 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin',
475 '<(PRODUCT_DIR)/plugin.vch', 480 '<(PRODUCT_DIR)/plugin.vch',
476 ], 481 ],
477 }], 482 }],
483 ['internal_pdf', {
484 'files': [
485 '<(PRODUCT_DIR)/PDF.plugin',
486 ],
487 }],
478 ], 488 ],
479 }, 489 },
480 ], 490 ],
481 'conditions': [ 491 'conditions': [
482 ['mac_breakpad==1', { 492 ['mac_breakpad==1', {
483 'variables': { 493 'variables': {
484 # A real .dSYM is needed for dump_syms to operate on. 494 # A real .dSYM is needed for dump_syms to operate on.
485 'mac_real_dsym': 1, 495 'mac_real_dsym': 1,
486 }, 496 },
487 'sources': [ 497 'sources': [
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 'configurations': { 593 'configurations': {
584 'Common_Base': { 594 'Common_Base': {
585 'msvs_target_platform': 'x64', 595 'msvs_target_platform': 'x64',
586 }, 596 },
587 }, 597 },
588 }, # target chrome_dll 598 }, # target chrome_dll
589 ], 599 ],
590 }], 600 }],
591 ], 601 ],
592 } 602 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_exe.gypi » ('j') | chrome/installer/mini_installer/chrome.release » ('J')

Powered by Google App Engine
This is Rietveld 408576698