Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1140)

Side by Side Diff: third_party/adobe/flash/flash_player.gyp

Issue 10911137: Remove bundled NPAPI Flash on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698