| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 }, | 102 }, |
| 103 { | 103 { |
| 104 'target_name': 'policy_proto_compile', | 104 'target_name': 'policy_proto_compile', |
| 105 'type': 'static_library', | 105 'type': 'static_library', |
| 106 'sources': [ | 106 'sources': [ |
| 107 '<(proto_rel_path)/chrome_device_policy.proto', | 107 '<(proto_rel_path)/chrome_device_policy.proto', |
| 108 '<(proto_rel_path)/chrome_extension_policy.proto', | 108 '<(proto_rel_path)/chrome_extension_policy.proto', |
| 109 '<(proto_rel_path)/device_management_backend.proto', | 109 '<(proto_rel_path)/device_management_backend.proto', |
| 110 '<(proto_rel_path)/device_management_local.proto', | 110 '<(proto_rel_path)/device_management_local.proto', |
| 111 '<(proto_rel_path)/install_attributes.proto', | 111 '<(proto_rel_path)/install_attributes.proto', |
| 112 '<(proto_rel_path)/old_generic_format.proto', | |
| 113 ], | 112 ], |
| 114 'variables': { | 113 'variables': { |
| 115 'proto_in_dir': '<(proto_rel_path)', | 114 'proto_in_dir': '<(proto_rel_path)', |
| 116 'proto_out_dir': '<(proto_path_substr)', | 115 'proto_out_dir': '<(proto_path_substr)', |
| 117 }, | 116 }, |
| 118 'dependencies': [ | 117 'dependencies': [ |
| 119 'cloud_policy_code_generate', | 118 'cloud_policy_code_generate', |
| 120 ], | 119 ], |
| 121 'includes': [ '../../../build/protoc.gypi' ], | 120 'includes': [ '../../../build/protoc.gypi' ], |
| 122 }, | 121 }, |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 'configurations': { | 186 'configurations': { |
| 188 'Common_Base': { | 187 'Common_Base': { |
| 189 'msvs_target_platform': 'x64', | 188 'msvs_target_platform': 'x64', |
| 190 }, | 189 }, |
| 191 }, | 190 }, |
| 192 }, | 191 }, |
| 193 ], | 192 ], |
| 194 }], | 193 }], |
| 195 ], # 'conditions' | 194 ], # 'conditions' |
| 196 } | 195 } |
| OLD | NEW |