Test Screen Orientation polling for Android 4.0/4.1.
[chromium-blink-merge.git] / content / content_resources.gyp
blob273946e5ee2547eda7f1f67d957de4f3cbbf9d90
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   'targets': [
10     {
11       # GN version: //content:resources
12       'target_name': 'content_resources',
13       'type': 'none',
14       'variables': {
15         'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content',
16       },
17       'actions': [
18         {
19           'action_name': 'generate_content_resources',
20           'variables': {
21             'grit_grd_file': 'content_resources.grd',
22           },
23           'includes': [ '../build/grit_action.gypi' ],
24         },
25       ],
26       'includes': [ '../build/grit_target.gypi' ],
27       'copies': [
28         {
29           'destination': '<(PRODUCT_DIR)',
30           'files': [
31             '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak'
32           ],
33         },
34       ],
35     },
36   ],