| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'direct_dependent_settings': { | 92 'direct_dependent_settings': { |
| 93 'include_dirs': [ | 93 'include_dirs': [ |
| 94 '<(protoc_out_dir)', | 94 '<(protoc_out_dir)', |
| 95 ] | 95 ] |
| 96 }, | 96 }, |
| 97 }, | 97 }, |
| 98 { | 98 { |
| 99 'target_name': 'cloud_policy_backend_header_compile', | 99 'target_name': 'cloud_policy_backend_header_compile', |
| 100 'type': 'none', | 100 'type': 'none', |
| 101 'sources': [ | 101 'sources': [ |
| 102 '<(proto_rel_path)/chrome_device_policy.proto', |
| 102 '<(proto_rel_path)/device_management_backend.proto', | 103 '<(proto_rel_path)/device_management_backend.proto', |
| 103 '<(proto_rel_path)/device_management_local.proto', | 104 '<(proto_rel_path)/device_management_local.proto', |
| 104 ], | 105 ], |
| 105 'rules': [ | 106 'rules': [ |
| 106 { | 107 { |
| 107 'rule_name': 'gen_proto', | 108 'rule_name': 'gen_proto', |
| 108 'extension': 'proto', | 109 'extension': 'proto', |
| 109 'inputs': [ | 110 'inputs': [ |
| 110 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)', | 111 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)', |
| 111 ], | 112 ], |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ], | 196 ], |
| 196 }], | 197 }], |
| 197 ], # 'conditions' | 198 ], # 'conditions' |
| 198 } | 199 } |
| 199 | 200 |
| 200 # Local Variables: | 201 # Local Variables: |
| 201 # tab-width:2 | 202 # tab-width:2 |
| 202 # indent-tabs-mode:nil | 203 # indent-tabs-mode:nil |
| 203 # End: | 204 # End: |
| 204 # vim: set expandtab tabstop=2 shiftwidth=2: | 205 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |