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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 2849009: Revert 49991 - Only copy libffmpegsumo if build_libffmpegsumo is 1.... (Closed) Base URL: svn://svn.chromium.org/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 | no next file » | 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) 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 'conditions': [ 450 'conditions': [
451 ['mac_breakpad==1', { 451 ['mac_breakpad==1', {
452 'files': [ 452 'files': [
453 '<(PRODUCT_DIR)/crash_inspector', 453 '<(PRODUCT_DIR)/crash_inspector',
454 '<(PRODUCT_DIR)/crash_report_sender.app' 454 '<(PRODUCT_DIR)/crash_report_sender.app'
455 ], 455 ],
456 }], 456 }],
457 ], 457 ],
458 }, 458 },
459 { 459 {
460 'destination':
461 '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
462 'files': [
463 # TODO(ajwong): Find a way to share this path with
464 # ffmpeg.gyp so they don't diverge. (BUG=23602)
465 '<(PRODUCT_DIR)/libffmpegsumo.dylib',
466 ],
467 },
468 {
460 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne t Plug-Ins', 469 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne t Plug-Ins',
461 'files': [], 470 'files': [],
462 'conditions': [ 471 'conditions': [
463 [ 'branding == "Chrome"', { 472 [ 'branding == "Chrome"', {
464 'files': [ 473 'files': [
465 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', 474 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin',
466 '<(PRODUCT_DIR)/plugin.vch', 475 '<(PRODUCT_DIR)/plugin.vch',
467 ], 476 ],
468 }], 477 }],
469 ['internal_pdf', { 478 ['internal_pdf', {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 'Versions/Current/Frameworks', 525 'Versions/Current/Frameworks',
517 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Frameworks' 526 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Frameworks'
518 ], 527 ],
519 }, 528 },
520 ], 529 ],
521 }], # mac_keystone 530 }], # mac_keystone
522 ['internal_pdf', { 531 ['internal_pdf', {
523 'dependencies': [ 532 'dependencies': [
524 '../pdf/pdf.gyp:pdf', 533 '../pdf/pdf.gyp:pdf',
525 ], 534 ],
526 }], # internal_pdf 535 }],
527 ['build_ffmpegsumo', {
528 'copies': [
529 {
530 'destination':
531 '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
532 'files': [
533 # TODO(ajwong): Find a way to share this path with
534 # ffmpeg.gyp so they don't diverge. (BUG=23602)
535 '<(PRODUCT_DIR)/libffmpegsumo.dylib',
536 ],
537 },
538 ],
539 }], # build_ffmpegsumo
540 ], # conditions 536 ], # conditions
541 }], # OS=="mac" 537 }], # OS=="mac"
542 ], # conditions 538 ], # conditions
543 }, # target chrome_dll 539 }, # target chrome_dll
544 ], # targets 540 ], # targets
545 }], # OS=="mac" or OS=="win" 541 }], # OS=="mac" or OS=="win"
546 [ 'OS=="win"', { 542 [ 'OS=="win"', {
547 'targets': [ 543 'targets': [
548 { 544 {
549 'target_name': 'chrome_dll_nacl_win64', 545 'target_name': 'chrome_dll_nacl_win64',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 'configurations': { 593 'configurations': {
598 'Common_Base': { 594 'Common_Base': {
599 'msvs_target_platform': 'x64', 595 'msvs_target_platform': 'x64',
600 }, 596 },
601 }, 597 },
602 }, # target chrome_dll 598 }, # target chrome_dll
603 ], 599 ],
604 }], 600 }],
605 ], 601 ],
606 } 602 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698