Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: chrome/app/policy/cloud_policy_codegen.gyp

Issue 11734005: Read CrOS install attributes cache on startup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments, write test. Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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',
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698