Chromium Code Reviews| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 'proto_in_dir': '<(policy_out_dir)/policy', | 94 'proto_in_dir': '<(policy_out_dir)/policy', |
| 95 'proto_out_dir': '<(proto_path_substr)', | 95 'proto_out_dir': '<(proto_path_substr)', |
| 96 }, | 96 }, |
| 97 'dependencies': [ | 97 'dependencies': [ |
| 98 'cloud_policy_code_generate', | 98 'cloud_policy_code_generate', |
| 99 'cloud_policy_proto_compile', | 99 'cloud_policy_proto_compile', |
| 100 ], | 100 ], |
| 101 'includes': [ '../../../build/protoc.gypi' ], | 101 'includes': [ '../../../build/protoc.gypi' ], |
| 102 }, | 102 }, |
| 103 { | 103 { |
| 104 'target_name': 'cloud_policy_backend_header_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)/device_management_backend.proto', | 108 '<(proto_rel_path)/device_management_backend.proto', |
| 109 '<(proto_rel_path)/device_management_local.proto', | 109 '<(proto_rel_path)/device_management_local.proto', |
| 110 '<(proto_rel_path)/install_attributes.proto', | |
|
Joao da Silva
2013/01/17 19:53:25
This (and chrome_device_policy.proto) are chromeos
Mattias Nissler (ping if slow)
2013/01/17 20:34:43
Yes, I was planning to move the CrOS-specific poli
| |
| 110 '<(proto_rel_path)/old_generic_format.proto', | 111 '<(proto_rel_path)/old_generic_format.proto', |
| 111 ], | 112 ], |
| 112 'variables': { | 113 'variables': { |
| 113 'proto_in_dir': '<(proto_rel_path)', | 114 'proto_in_dir': '<(proto_rel_path)', |
| 114 'proto_out_dir': '<(proto_path_substr)', | 115 'proto_out_dir': '<(proto_path_substr)', |
| 115 }, | 116 }, |
| 116 'dependencies': [ | 117 'dependencies': [ |
| 117 'cloud_policy_code_generate', | 118 'cloud_policy_code_generate', |
| 118 ], | 119 ], |
| 119 'includes': [ '../../../build/protoc.gypi' ], | 120 'includes': [ '../../../build/protoc.gypi' ], |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 132 '<(policy_constant_header_path)', | 133 '<(policy_constant_header_path)', |
| 133 '<(policy_constant_source_path)', | 134 '<(policy_constant_source_path)', |
| 134 '<(protobuf_decoder_path)', | 135 '<(protobuf_decoder_path)', |
| 135 ], | 136 ], |
| 136 'include_dirs': [ | 137 'include_dirs': [ |
| 137 '<(DEPTH)', | 138 '<(DEPTH)', |
| 138 ], | 139 ], |
| 139 'dependencies': [ | 140 'dependencies': [ |
| 140 'cloud_policy_code_generate', | 141 'cloud_policy_code_generate', |
| 141 'cloud_policy_proto_compile', | 142 'cloud_policy_proto_compile', |
| 142 'cloud_policy_backend_header_compile', | 143 'policy_proto_compile', |
| 143 '<(DEPTH)/base/base.gyp:base', | 144 '<(DEPTH)/base/base.gyp:base', |
| 144 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', | 145 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 145 ], | 146 ], |
| 146 }, | 147 }, |
| 147 { | 148 { |
| 148 'target_name': 'policy_test_support', | 149 'target_name': 'policy_test_support', |
| 149 'type': 'none', | 150 'type': 'none', |
| 150 'hard_dependency': 1, | 151 'hard_dependency': 1, |
| 151 'direct_dependent_settings': { | 152 'direct_dependent_settings': { |
| 152 'include_dirs': [ | 153 'include_dirs': [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 185 'configurations': { | 186 'configurations': { |
| 186 'Common_Base': { | 187 'Common_Base': { |
| 187 'msvs_target_platform': 'x64', | 188 'msvs_target_platform': 'x64', |
| 188 }, | 189 }, |
| 189 }, | 190 }, |
| 190 }, | 191 }, |
| 191 ], | 192 ], |
| 192 }], | 193 }], |
| 193 ], # 'conditions' | 194 ], # 'conditions' |
| 194 } | 195 } |
| OLD | NEW |