| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
| 6 # Always provide a target, so we can put the logic about whether there's | 6 # Always provide a target, so we can put the logic about whether there's |
| 7 # anything to be done in this file (instead of a higher-level .gyp file). | 7 # anything to be done in this file (instead of a higher-level .gyp file). |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'flash_player', | 10 'target_name': 'flash_player', |
| 11 'type': 'none', | 11 'type': 'none', |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 [ 'branding == "Chrome"', { | 13 [ 'branding == "Chrome"', { |
| 14 'copies': [{ | 14 'copies': [{ |
| 15 'destination': '<(PRODUCT_DIR)', | 15 'destination': '<(PRODUCT_DIR)', |
| 16 'files': [], | 16 'files': [], |
| 17 'conditions': [ | 17 'conditions': [ |
| 18 [ 'chromeos == 1', { | 18 [ 'chromeos == 1', { |
| 19 'files': [ | 19 'files': [ |
| 20 'binaries/chromeos/libgcflashplayer.so', | 20 'binaries/chromeos/libgcflashplayer.so', |
| 21 'binaries/linux/plugin.vch', |
| 21 ] | 22 ] |
| 22 }], | 23 }], |
| 23 [ 'OS == "linux" and target_arch == "ia32" and chromeos == 0', { | 24 [ 'OS == "linux" and target_arch == "ia32" and chromeos == 0', { |
| 24 'files': [ | 25 'files': [ |
| 25 'binaries/linux/libgcflashplayer.so', | 26 'binaries/linux/libgcflashplayer.so', |
| 26 'binaries/linux/plugin.vch', | 27 'binaries/linux/plugin.vch', |
| 27 ] | 28 ] |
| 28 }], | 29 }], |
| 29 [ 'OS == "mac"', { | 30 [ 'OS == "mac"', { |
| 30 'files': [ | 31 'files': [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 44 ], | 45 ], |
| 45 }, | 46 }, |
| 46 ], | 47 ], |
| 47 } | 48 } |
| 48 | 49 |
| 49 # Local Variables: | 50 # Local Variables: |
| 50 # tab-width:2 | 51 # tab-width:2 |
| 51 # indent-tabs-mode:nil | 52 # indent-tabs-mode:nil |
| 52 # End: | 53 # End: |
| 53 # vim: set expandtab tabstop=2 shiftwidth=2: | 54 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |