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

Side by Side Diff: test/mac/loadable-module-bundle-product-extension/test.gyp

Issue 401633002: Enable custom suffixes for Mac bundles. Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 4 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
(Empty)
1 # Copyright (c) 2014 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [{
6 'target_name': 'test',
7 'type': 'none',
8 'dependencies': ['child_one', 'child_two'],
9 }, {
10 'target_name': 'child_one',
11 'product_name': 'Collide',
12 'product_extension': 'bar',
13 'sources': ['src.cc'],
14 'type': 'loadable_module',
15 'mac_bundle': 1,
16 }, {
17 'target_name': 'child_two',
18 'product_name': 'Collide',
19 'product_extension': 'foo',
20 'sources': ['src.cc'],
21 'type': 'loadable_module',
22 'mac_bundle': 1,
23 }],
24 }
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698