| 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 ], | 52 ], |
| 53 }], | 53 }], |
| 54 ], | 54 ], |
| 55 }], | 55 }], |
| 56 ], | 56 ], |
| 57 }, | 57 }, |
| 58 # Always provide a target, so we can put the logic about whether there's | 58 # Always provide a target, so we can put the logic about whether there's |
| 59 # anything to be done in this file (instead of a higher-level .gyp file). | 59 # anything to be done in this file (instead of a higher-level .gyp file). |
| 60 'targets': [ | 60 'targets': [ |
| 61 { | 61 { |
| 62 # GN version: //third_party/adobe/flash:flapper_version_h |
| 62 'target_name': 'flapper_version_h', | 63 'target_name': 'flapper_version_h', |
| 63 'type': 'none', | 64 'type': 'none', |
| 64 'copies': [{ | 65 'copies': [{ |
| 65 'destination': '<(SHARED_INTERMEDIATE_DIR)', | 66 'destination': '<(SHARED_INTERMEDIATE_DIR)', |
| 66 'files': [ '<(flapper_version_h_file)' ], | 67 'files': [ '<(flapper_version_h_file)' ], |
| 67 }], | 68 }], |
| 68 }, | 69 }, |
| 69 { | 70 { |
| 71 # GN version: //third_party/adobe/flash:flapper_binaries |
| 70 'target_name': 'flapper_binaries', | 72 'target_name': 'flapper_binaries', |
| 71 'type': 'none', | 73 'type': 'none', |
| 72 'copies': [{ | 74 'copies': [{ |
| 73 'destination': '<(PRODUCT_DIR)/PepperFlash', | 75 'destination': '<(PRODUCT_DIR)/PepperFlash', |
| 74 'files': [ '<@(flapper_binary_files)' ], | 76 'files': [ '<@(flapper_binary_files)' ], |
| 75 }], | 77 }], |
| 76 }, | 78 }, |
| 77 ], | 79 ], |
| 78 } | 80 } |
| OLD | NEW |