OLD | NEW |
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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'policy_out_dir': '<(SHARED_INTERMEDIATE_DIR)/policy', | 8 'policy_out_dir': '<(SHARED_INTERMEDIATE_DIR)/policy', |
9 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 9 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
10 'generate_policy_source_script_path': | 10 'generate_policy_source_script_path': |
(...skipping 30 matching lines...) Expand all Loading... |
41 'action_name': 'generate_policy_source', | 41 'action_name': 'generate_policy_source', |
42 'action': [ | 42 'action': [ |
43 'python', | 43 'python', |
44 '<@(generate_policy_source_script_path)', | 44 '<@(generate_policy_source_script_path)', |
45 '--policy-constants-header=<(policy_constant_header_path)', | 45 '--policy-constants-header=<(policy_constant_header_path)', |
46 '--policy-constants-source=<(policy_constant_source_path)', | 46 '--policy-constants-source=<(policy_constant_source_path)', |
47 '--policy-type-header=<(configuration_policy_type_header_path)', | 47 '--policy-type-header=<(configuration_policy_type_header_path)', |
48 '--policy-protobuf=<(cloud_policy_proto_path)', | 48 '--policy-protobuf=<(cloud_policy_proto_path)', |
49 '--protobuf-decoder=<(protobuf_decoder_path)', | 49 '--protobuf-decoder=<(protobuf_decoder_path)', |
50 '<(OS)', | 50 '<(OS)', |
| 51 '<(chromeos)', |
51 'policy_templates.json', | 52 'policy_templates.json', |
52 ], | 53 ], |
53 'message': 'Generating policy source', | 54 'message': 'Generating policy source', |
54 }, | 55 }, |
55 ], | 56 ], |
56 'direct_dependent_settings': { | 57 'direct_dependent_settings': { |
57 'include_dirs': [ | 58 'include_dirs': [ |
58 '<(policy_out_dir)', | 59 '<(policy_out_dir)', |
59 '<(protoc_out_dir)', | 60 '<(protoc_out_dir)', |
60 ], | 61 ], |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'configurations': { | 196 'configurations': { |
196 'Common_Base': { | 197 'Common_Base': { |
197 'msvs_target_platform': 'x64', | 198 'msvs_target_platform': 'x64', |
198 }, | 199 }, |
199 }, | 200 }, |
200 }, | 201 }, |
201 ], | 202 ], |
202 }], | 203 }], |
203 ], # 'conditions' | 204 ], # 'conditions' |
204 } | 205 } |
OLD | NEW |