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

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

Issue 343233002: Make chrome/common compile in GN (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
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 ], 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698