| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'flapper_version_h_file%': 'flapper_version.h', | 7 'flapper_version_h_file%': 'flapper_version.h', |
| 8 'flapper_binary_files%': [], | 8 'flapper_binary_files%': [], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 [ 'branding == "Chrome"', { | 10 [ 'branding == "Chrome"', { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 'copies': [{ | 52 'copies': [{ |
| 53 'destination': '<(PRODUCT_DIR)', | 53 'destination': '<(PRODUCT_DIR)', |
| 54 'files': [], | 54 'files': [], |
| 55 'conditions': [ | 55 'conditions': [ |
| 56 [ 'OS == "mac"', { | 56 [ 'OS == "mac"', { |
| 57 'files': [ | 57 'files': [ |
| 58 'binaries/mac/Flash Player Plugin for Chrome.plugin', | 58 'binaries/mac/Flash Player Plugin for Chrome.plugin', |
| 59 'binaries/mac/plugin.vch', | 59 'binaries/mac/plugin.vch', |
| 60 ] | 60 ] |
| 61 }], | 61 }], |
| 62 [ 'OS == "win"', { | |
| 63 'files': [ | |
| 64 'binaries/win/FlashPlayerApp.exe', | |
| 65 'binaries/win/FlashPlayerCPLApp.cpl', | |
| 66 'binaries/win/gcswf32.dll', | |
| 67 'binaries/win/plugin.vch', | |
| 68 'symbols/win/gcswf32.pdb', | |
| 69 ] | |
| 70 }], | |
| 71 ], | 62 ], |
| 72 }], | 63 }], |
| 73 }], | 64 }], |
| 74 ], | 65 ], |
| 75 }, | 66 }, |
| 76 { | 67 { |
| 77 'target_name': 'flapper_version_h', | 68 'target_name': 'flapper_version_h', |
| 78 'type': 'none', | 69 'type': 'none', |
| 79 'copies': [{ | 70 'copies': [{ |
| 80 'destination': '<(SHARED_INTERMEDIATE_DIR)', | 71 'destination': '<(SHARED_INTERMEDIATE_DIR)', |
| 81 'files': [ '<(flapper_version_h_file)' ], | 72 'files': [ '<(flapper_version_h_file)' ], |
| 82 }], | 73 }], |
| 83 }, | 74 }, |
| 84 { | 75 { |
| 85 'target_name': 'flapper_binaries', | 76 'target_name': 'flapper_binaries', |
| 86 'type': 'none', | 77 'type': 'none', |
| 87 'copies': [{ | 78 'copies': [{ |
| 88 'destination': '<(PRODUCT_DIR)/PepperFlash', | 79 'destination': '<(PRODUCT_DIR)/PepperFlash', |
| 89 'files': [ '<@(flapper_binary_files)' ], | 80 'files': [ '<@(flapper_binary_files)' ], |
| 90 }], | 81 }], |
| 91 }, | 82 }, |
| 92 ], | 83 ], |
| 93 } | 84 } |
| OLD | NEW |