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

Side by Side Diff: test/mac/copy-dylib/test.gyp

Issue 9139003: ninja/mac: Put dylibs directly into the product directory. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 8 years, 11 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 | « test/mac/copy-dylib/empty.c ('k') | test/mac/gyptest-copy-dylib.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2012 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 {
7 'target_name': 'my_dylib',
8 'type': 'shared_library',
9 'sources': [ 'empty.c', ],
10 },
11 {
12 'target_name': 'test_app',
13 'product_name': 'Test App',
14 'type': 'executable',
15 'mac_bundle': 1,
16 'dependencies': [ 'my_dylib', ],
17 'sources': [
18 'empty.c',
19 ],
20 'copies': [
21 {
22 'destination': '<(PRODUCT_DIR)/Test App.app/Contents/Resources',
23 'files': [
24 '<(PRODUCT_DIR)/libmy_dylib.dylib',
25 ],
26 },
27 ],
28 },
29 ],
30 }
31
OLDNEW
« no previous file with comments | « test/mac/copy-dylib/empty.c ('k') | test/mac/gyptest-copy-dylib.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698