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

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

Issue 11308255: Remove NPAPI target from flash_player.gyp (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years 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
« no previous file with comments | « build/all.gyp ('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 27 matching lines...) Expand all
38 ], 38 ],
39 }], 39 }],
40 ], 40 ],
41 }], 41 }],
42 ], 42 ],
43 }, 43 },
44 # Always provide a target, so we can put the logic about whether there's 44 # Always provide a target, so we can put the logic about whether there's
45 # anything to be done in this file (instead of a higher-level .gyp file). 45 # anything to be done in this file (instead of a higher-level .gyp file).
46 'targets': [ 46 'targets': [
47 { 47 {
48 # TODO(shess): Remove this target entirely.
49 'target_name': 'flash_player',
50 'type': 'none',
51 'conditions': [
52 [ 'branding == "Chrome"', {
53 'copies': [{
54 'destination': '<(PRODUCT_DIR)',
55 'files': [],
56 'conditions': [
57 ],
58 }],
59 }],
60 ],
61 },
62 {
63 'target_name': 'flapper_version_h', 48 'target_name': 'flapper_version_h',
64 'type': 'none', 49 'type': 'none',
65 'copies': [{ 50 'copies': [{
66 'destination': '<(SHARED_INTERMEDIATE_DIR)', 51 'destination': '<(SHARED_INTERMEDIATE_DIR)',
67 'files': [ '<(flapper_version_h_file)' ], 52 'files': [ '<(flapper_version_h_file)' ],
68 }], 53 }],
69 }, 54 },
70 { 55 {
71 'target_name': 'flapper_binaries', 56 'target_name': 'flapper_binaries',
72 'type': 'none', 57 'type': 'none',
73 'copies': [{ 58 'copies': [{
74 'destination': '<(PRODUCT_DIR)/PepperFlash', 59 'destination': '<(PRODUCT_DIR)/PepperFlash',
75 'files': [ '<@(flapper_binary_files)' ], 60 'files': [ '<@(flapper_binary_files)' ],
76 }], 61 }],
77 }, 62 },
78 ], 63 ],
79 } 64 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698