OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//components/policy/resources/policy_templates.gni") | 7 import("//components/policy/resources/policy_templates.gni") |
8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 # these files can just be put into policy/core/common? | 202 # these files can just be put into policy/core/common? |
203 static_library("policy") { | 203 static_library("policy") { |
204 sources = [ | 204 sources = [ |
205 constants_header_path, | 205 constants_header_path, |
206 constants_source_path, | 206 constants_source_path, |
207 protobuf_decoder_path, | 207 protobuf_decoder_path, |
208 ] | 208 ] |
209 | 209 |
210 defines = [ "POLICY_COMPONENT_IMPLEMENTATION" ] | 210 defines = [ "POLICY_COMPONENT_IMPLEMENTATION" ] |
211 | 211 |
212 deps = [ | 212 public_deps = [ |
213 ":cloud_policy_code_generate", | 213 ":cloud_policy_code_generate", |
214 ":cloud_policy_proto_generated_compile", | 214 ":cloud_policy_proto_generated_compile", |
215 "//base", | 215 "//base", |
216 "//third_party/protobuf:protobuf_lite", | 216 "//third_party/protobuf:protobuf_lite", |
217 ] | 217 ] |
218 } | 218 } |
219 | 219 |
220 group("test_support") { | 220 group("test_support") { |
221 deps = [ | 221 deps = [ |
222 ":chrome_settings_proto_generated_compile", | 222 ":chrome_settings_proto_generated_compile", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 | 332 |
333 group("app_restrictions_resources") { | 333 group("app_restrictions_resources") { |
334 deps = [ | 334 deps = [ |
335 ":$build_config_target_name", | 335 ":$build_config_target_name", |
336 ":$zip_target_name", | 336 ":$zip_target_name", |
337 ] | 337 ] |
338 } | 338 } |
339 } | 339 } |
340 } | 340 } |
341 #TODO(GYP) chrome_manifest_bundle | 341 #TODO(GYP) chrome_manifest_bundle |
OLD | NEW |