Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 { | |
| 469 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne t Plug-Ins', | 460 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne t Plug-Ins', |
| 470 'files': [], | 461 'files': [], |
| 471 'conditions': [ | 462 'conditions': [ |
| 472 [ 'branding == "Chrome"', { | 463 [ 'branding == "Chrome"', { |
| 473 'files': [ | 464 'files': [ |
| 474 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', | 465 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', |
| 475 '<(PRODUCT_DIR)/plugin.vch', | 466 '<(PRODUCT_DIR)/plugin.vch', |
| 476 ], | 467 ], |
| 477 }], | 468 }], |
| 478 ['internal_pdf', { | 469 ['internal_pdf', { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 525 'Versions/Current/Frameworks', | 516 'Versions/Current/Frameworks', |
| 526 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Frameworks' | 517 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Frameworks' |
| 527 ], | 518 ], |
| 528 }, | 519 }, |
| 529 ], | 520 ], |
| 530 }], # mac_keystone | 521 }], # mac_keystone |
| 531 ['internal_pdf', { | 522 ['internal_pdf', { |
| 532 'dependencies': [ | 523 'dependencies': [ |
| 533 '../pdf/pdf.gyp:pdf', | 524 '../pdf/pdf.gyp:pdf', |
| 534 ], | 525 ], |
| 535 }], | 526 }], # internal_pdf |
| 527 ['build_ffmpegsumo', { | |
|
Mark Mentovai
2010/06/16 18:25:13
Fix CL description: build_ffmpegsumo vs. build_lib
Mark Mentovai
2010/06/16 18:25:13
Where does the default value come from?
Nico
2010/06/16 18:29:43
Too late :-/
Nico
2010/06/16 18:29:43
third_party/ffmpeg/ffmpeg.gyp
Nico
2010/06/16 19:35:19
I used `git try`, but due to http://code.google.co
| |
| 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 | |
| 536 ], # conditions | 540 ], # conditions |
| 537 }], # OS=="mac" | 541 }], # OS=="mac" |
| 538 ], # conditions | 542 ], # conditions |
| 539 }, # target chrome_dll | 543 }, # target chrome_dll |
| 540 ], # targets | 544 ], # targets |
| 541 }], # OS=="mac" or OS=="win" | 545 }], # OS=="mac" or OS=="win" |
| 542 [ 'OS=="win"', { | 546 [ 'OS=="win"', { |
| 543 'targets': [ | 547 'targets': [ |
| 544 { | 548 { |
| 545 'target_name': 'chrome_dll_nacl_win64', | 549 'target_name': 'chrome_dll_nacl_win64', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 593 'configurations': { | 597 'configurations': { |
| 594 'Common_Base': { | 598 'Common_Base': { |
| 595 'msvs_target_platform': 'x64', | 599 'msvs_target_platform': 'x64', |
| 596 }, | 600 }, |
| 597 }, | 601 }, |
| 598 }, # target chrome_dll | 602 }, # target chrome_dll |
| 599 ], | 603 ], |
| 600 }], | 604 }], |
| 601 ], | 605 ], |
| 602 } | 606 } |
| OLD | NEW |