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