| 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"', { |
| 11 'conditions': [ | 11 'conditions': [ |
| 12 [ 'OS == "linux" and target_arch == "ia32"', { | 12 [ 'OS == "linux" and target_arch == "ia32"', { |
| 13 'flapper_version_h_file%': 'symbols/ppapi/linux/flapper_version.h', | 13 'flapper_version_h_file%': 'symbols/ppapi/linux/flapper_version.h', |
| 14 'flapper_binary_files%': [ | 14 'flapper_binary_files%': [ |
| 15 'binaries/ppapi/linux/libpepflashplayer.so', | 15 'binaries/ppapi/linux/libpepflashplayer.so', |
| 16 'binaries/ppapi/linux/manifest.json', | 16 'binaries/ppapi/linux/manifest.json', |
| 17 ], | 17 ], |
| 18 }], | 18 }], |
| 19 [ 'OS == "linux" and target_arch == "x64"', { | 19 [ 'OS == "linux" and target_arch == "x64"', { |
| 20 'flapper_version_h_file%': 'symbols/ppapi/linux_x64/flapper_version.
h', | 20 'flapper_version_h_file%': 'symbols/ppapi/linux_x64/flapper_version.
h', |
| 21 'flapper_binary_files%': [ | 21 'flapper_binary_files%': [ |
| 22 'binaries/ppapi/linux_x64/libpepflashplayer.so', | 22 'binaries/ppapi/linux_x64/libpepflashplayer.so', |
| 23 'binaries/ppapi/linux_x64/manifest.json', | 23 'binaries/ppapi/linux_x64/manifest.json', |
| 24 ], | 24 ], |
| 25 }], | 25 }], |
| 26 [ 'OS == "mac"', { | 26 [ 'OS == "mac" and target_arch == "ia32"', { |
| 27 'flapper_version_h_file%': 'symbols/ppapi/mac/flapper_version.h', | 27 'flapper_version_h_file%': 'symbols/ppapi/mac/flapper_version.h', |
| 28 'flapper_binary_files%': [ | 28 'flapper_binary_files%': [ |
| 29 'binaries/ppapi/mac/PepperFlashPlayer.plugin', | 29 'binaries/ppapi/mac/PepperFlashPlayer.plugin', |
| 30 'binaries/ppapi/mac/manifest.json', | 30 'binaries/ppapi/mac/manifest.json', |
| 31 ], | 31 ], |
| 32 }], | 32 }], |
| 33 [ 'OS == "mac" and target_arch == "x64"', { |
| 34 'flapper_version_h_file%': 'symbols/ppapi/mac_64/flapper_version.h', |
| 35 'flapper_binary_files%': [ |
| 36 'binaries/ppapi/mac_64/PepperFlashPlayer.plugin', |
| 37 'binaries/ppapi/mac_64/manifest.json', |
| 38 ], |
| 39 }], |
| 33 [ 'OS == "win"', { | 40 [ 'OS == "win"', { |
| 34 'flapper_version_h_file%': 'symbols/ppapi/win/flapper_version.h', | 41 'flapper_version_h_file%': 'symbols/ppapi/win/flapper_version.h', |
| 35 'flapper_binary_files%': [ | 42 'flapper_binary_files%': [ |
| 36 'binaries/ppapi/win/pepflashplayer.dll', | 43 'binaries/ppapi/win/pepflashplayer.dll', |
| 37 'binaries/ppapi/win/manifest.json', | 44 'binaries/ppapi/win/manifest.json', |
| 38 ], | 45 ], |
| 39 }], | 46 }], |
| 40 ], | 47 ], |
| 41 }], | 48 }], |
| 42 ], | 49 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 55 { | 62 { |
| 56 'target_name': 'flapper_binaries', | 63 'target_name': 'flapper_binaries', |
| 57 'type': 'none', | 64 'type': 'none', |
| 58 'copies': [{ | 65 'copies': [{ |
| 59 'destination': '<(PRODUCT_DIR)/PepperFlash', | 66 'destination': '<(PRODUCT_DIR)/PepperFlash', |
| 60 'files': [ '<@(flapper_binary_files)' ], | 67 'files': [ '<@(flapper_binary_files)' ], |
| 61 }], | 68 }], |
| 62 }, | 69 }, |
| 63 ], | 70 ], |
| 64 } | 71 } |
| OLD | NEW |