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

Side by Side Diff: rlz/rlz.gyp

Issue 118012: Only copy the rlz files when branding == "Chrome". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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
« 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 [ 'OS == "win"', { 10 [ 'OS == "win"', {
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'rlz', 13 'target_name': 'rlz',
14 'type': 'none', 14 'type': 'none',
15 'msvs_guid': 'BF4F447B-72B5-4059-BE1B-F94337B1F385', 15 'msvs_guid': 'BF4F447B-72B5-4059-BE1B-F94337B1F385',
16 'copies': [ 16 'conditions': [
17 { 17 ['branding == "Chrome"', {
18 'destination': '<(PRODUCT_DIR)', 18 'copies': [
19 'files': [ 19 {
20 'binaries/rlz.dll', 20 'destination': '<(PRODUCT_DIR)',
21 'binaries/rlz_dll.pdb', 21 'files': [
22 'binaries/rlz.dll',
23 'binaries/rlz_dll.pdb',
24 ],
25 },
22 ], 26 ],
23 }, 27 }],
24 ], 28 ],
25 }, 29 },
26 ], 30 ],
27 }], 31 }],
28 ], 32 ],
29 } 33 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698