OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2016 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. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 # GN version: //ios/web:resources | |
9 # TODO(eugenebut): Add gn version. | |
Jackie Quinn
2016/05/19 15:10:17
GN mods above - is this now irrelevant?
Eugene But (OOO till 7-30)
2016/05/19 15:15:33
Thanks, removed.
| |
10 'target_name': 'ios_web_resources', | |
11 'type': 'none', | |
12 'variables': { | |
13 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ios/web', | |
14 }, | |
15 'actions': [ | |
16 { | |
17 'action_name': 'generate_ios_web_resources', | |
18 'variables': { | |
19 'grit_grd_file': 'ios_web_resources.grd', | |
20 }, | |
21 'grit_additional_defines': [ | |
22 '-E', 'root_out_dir=<(PRODUCT_DIR)', | |
23 ], | |
24 'includes': [ '../../build/grit_action.gypi' ], | |
25 }, | |
26 ], | |
27 'copies': [ | |
28 { | |
29 'destination': '<(PRODUCT_DIR)', | |
30 'files': [ | |
31 '<(SHARED_INTERMEDIATE_DIR)/ios/web/ios_web_resources.pak' | |
32 ], | |
33 }, | |
34 ], | |
35 }, | |
36 ], | |
37 } | |
OLD | NEW |