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/features.gni") | 6 import("//build/config/features.gni") |
6 import("resources/policy_templates.gni") | 7 import("//components/policy/resources/policy_templates.gni") |
7 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
8 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
9 | 10 |
10 # About the policy component: | 11 # About the policy component: |
11 # | 12 # |
12 # There should really be two components. One called "policy" that includes all | 13 # There should really be two components. One called "policy" that includes all |
13 # generated code, and one "policy/proto" liek we have now. The proto needs to | 14 # generated code, and one "policy/proto" liek we have now. The proto needs to |
14 # be separate for cases like SesssionManagerClient which uses the protos to | 15 # be separate for cases like SesssionManagerClient which uses the protos to |
15 # communicate with the Chrome OS system layer, but doesn't need the rest of the | 16 # communicate with the Chrome OS system layer, but doesn't need the rest of the |
16 # policy stuff). | 17 # policy stuff). |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 | 325 |
325 deps = [ | 326 deps = [ |
326 ":${target_name}__consolidate_resources", | 327 ":${target_name}__consolidate_resources", |
327 ":${target_name}__build_config", | 328 ":${target_name}__build_config", |
328 ":${target_name}__create_zip", | 329 ":${target_name}__create_zip", |
329 ] | 330 ] |
330 } | 331 } |
331 } | 332 } |
332 } | 333 } |
333 #TODO(GYP) chrome_manifest_bundle | 334 #TODO(GYP) chrome_manifest_bundle |
OLD | NEW |