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

Side by Side Diff: test/mac/sourceless-module/test.gyp

Issue 9121011: ninja/mac: Don't choke on bundles that have no 'sources'. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: comment 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
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': 'empty_bundle',
8 'type': 'loadable_module',
9 'mac_bundle': 1,
10 },
11 {
12 'target_name': 'resource_bundle',
13 'type': 'loadable_module',
14 'mac_bundle': 1,
15 'actions': [
16 {
17 'action_name': 'Add Resource',
18 'inputs': [],
19 'outputs': [
20 '<(INTERMEDIATE_DIR)/app_manifest/foo.manifest',
21 ],
22 'action': [
23 'touch', '<(INTERMEDIATE_DIR)/app_manifest/foo.manifest',
24 ],
25 'process_outputs_as_mac_bundle_resources': 1,
26 },
27 ],
28 },
29 {
30 'target_name': 'dependent_on_resource_bundle',
31 'type': 'executable',
32 'sources': [ 'empty.c' ],
33 'dependencies': [
34 'resource_bundle',
35 ],
36 },
37 ],
38 }
39
OLDNEW
« test/mac/gyptest-sourceless-module.gyp ('K') | « test/mac/sourceless-module/empty.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698