| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'conditions' : [ | 10 'conditions' : [ |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 'action': [ | 377 'action': [ |
| 378 'ln', | 378 'ln', |
| 379 '-fhs', | 379 '-fhs', |
| 380 'Versions/Current/Libraries', | 380 'Versions/Current/Libraries', |
| 381 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' | 381 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' |
| 382 ], | 382 ], |
| 383 }, | 383 }, |
| 384 ], | 384 ], |
| 385 'copies': [ | 385 'copies': [ |
| 386 { | 386 { |
| 387 'destination': | 387 # Copy FFmpeg binaries for audio/video support. |
| 388 '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', | 388 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Librari
es', |
| 389 'files': [ | 389 'files': [ |
| 390 # TODO(ajwong): Find a way to share this path with | |
| 391 # ffmpeg.gyp so they don't diverge. (BUG=23602) | |
| 392 '<(PRODUCT_DIR)/ffmpegsumo.so', | 390 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 393 ], | 391 ], |
| 394 }, | 392 }, |
| 395 { | 393 { |
| 396 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne
t Plug-Ins', | 394 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Interne
t Plug-Ins', |
| 397 'files': [], | 395 'files': [], |
| 398 'conditions': [ | 396 'conditions': [ |
| 399 ['branding == "Chrome"', { | 397 ['branding == "Chrome"', { |
| 400 'files': [ | 398 'files': [ |
| 401 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', | 399 '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin', |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 ], | 515 ], |
| 518 }], | 516 }], |
| 519 ], # conditions | 517 ], # conditions |
| 520 }], # OS=="mac" | 518 }], # OS=="mac" |
| 521 ], # conditions | 519 ], # conditions |
| 522 }, # target chrome_dll | 520 }, # target chrome_dll |
| 523 ], # targets | 521 ], # targets |
| 524 }], # OS=="mac" or OS=="win" | 522 }], # OS=="mac" or OS=="win" |
| 525 ], | 523 ], |
| 526 } | 524 } |
| OLD | NEW |