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

Side by Side Diff: content/content_resources.gyp

Issue 9558003: Working around http://code.google.com/p/gyp/issues/detail?id=13 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 # TODO(jochen): make this a .gypi file and include it in content.gyp, once 5 # TODO(jochen): make this a .gypi file and include it in content.gyp, once
6 # content.gyp doesn't depend on gyp files from chrome/ anymore: 6 # content.gyp doesn't depend on gyp files from chrome/ anymore:
7 # http://crbug.com/10394 7 # http://crbug.com/10394
8 { 8 {
9 'variables': { 9 'variables': {
10 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content', 10 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content',
11 }, 11 },
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'content_resources', 14 'target_name': 'content_resources',
15 'type': 'none', 15 'type': 'none',
16 'actions': [ 16 'dependencies': [
17 { 17 'generate_content_resources',
18 'action_name': 'content_resources',
19 'variables': {
20 'grit_grd_file': 'content_resources.grd',
21 },
22 'includes': [ '../build/grit_action.gypi' ],
23 },
24 ], 18 ],
25 'includes': [ '../build/grit_target.gypi' ],
26 'copies': [ 19 'copies': [
27 { 20 {
28 'destination': '<(PRODUCT_DIR)', 21 'destination': '<(PRODUCT_DIR)',
29 'files': [ 22 'files': [
30 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak' 23 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak'
31 ], 24 ],
32 }, 25 },
33 ], 26 ],
27 'includes': [ '../build/grit_target.gypi' ],
28 },
29 {
30 'target_name': 'generate_content_resources',
31 'type': 'none',
32 'actions': [
33 {
34 'action_name': 'content_resources',
35 'variables': {
36 'grit_grd_file': 'content_resources.grd',
37 },
38 'includes': [ '../build/grit_action.gypi' ],
39 },
40 ],
34 }, 41 },
35 ], 42 ],
36 } 43 }
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