Remove define of defunct SK_DEBUG_PATH_REF from skia.gyp
[chromium-blink-merge.git] / content / content_resources.gyp
blobdb2ce8b36eb9616dd7b4b2d1423b3cb425d7d728
1 # Copyright (c) 2012 The Chromium Authors. 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.
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:
7 # http://crbug.com/10394
9   'variables': {
10     'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content',
11   },
12   'targets': [
13     {
14       'target_name': 'content_resources',
15       'type': 'none',
16       'dependencies': [
17         'generate_content_resources',
18       ],
19       'copies': [
20         {
21           'destination': '<(PRODUCT_DIR)',
22           'files': [
23             '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak'
24           ],
25         },
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       ],
41     },
42   ],