Chromium Code Reviews

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

Issue 3351003: Fix for ChromeOS build, included linux version of plugin.vch file for now to ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # Always provide a target, so we can put the logic about whether there's 6 # Always provide a target, so we can put the logic about whether there's
7 # anything to be done in this file (instead of a higher-level .gyp file). 7 # anything to be done in this file (instead of a higher-level .gyp file).
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'flash_player', 10 'target_name': 'flash_player',
11 'type': 'none', 11 'type': 'none',
12 'conditions': [ 12 'conditions': [
13 [ 'branding == "Chrome"', { 13 [ 'branding == "Chrome"', {
14 'copies': [{ 14 'copies': [{
15 'destination': '<(PRODUCT_DIR)', 15 'destination': '<(PRODUCT_DIR)',
16 'files': [], 16 'files': [],
17 'conditions': [ 17 'conditions': [
18 [ 'chromeos == 1', { 18 [ 'chromeos == 1', {
19 'files': [ 19 'files': [
20 'binaries/chromeos/libgcflashplayer.so', 20 'binaries/chromeos/libgcflashplayer.so',
21 'binaries/linux/plugin.vch',
21 ] 22 ]
22 }], 23 }],
23 [ 'OS == "linux" and target_arch == "ia32" and chromeos == 0', { 24 [ 'OS == "linux" and target_arch == "ia32" and chromeos == 0', {
24 'files': [ 25 'files': [
25 'binaries/linux/libgcflashplayer.so', 26 'binaries/linux/libgcflashplayer.so',
26 'binaries/linux/plugin.vch', 27 'binaries/linux/plugin.vch',
27 ] 28 ]
28 }], 29 }],
29 [ 'OS == "mac"', { 30 [ 'OS == "mac"', {
30 'files': [ 31 'files': [
(...skipping 13 matching lines...)
44 ], 45 ],
45 }, 46 },
46 ], 47 ],
47 } 48 }
48 49
49 # Local Variables: 50 # Local Variables:
50 # tab-width:2 51 # tab-width:2
51 # indent-tabs-mode:nil 52 # indent-tabs-mode:nil
52 # End: 53 # End:
53 # vim: set expandtab tabstop=2 shiftwidth=2: 54 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine