| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("common") { | 7 source_set("common") { |
| 8 visibility = [ "//components/policy/*" ] | 8 visibility = [ "//components/policy/*" ] |
| 9 | 9 |
| 10 defines = [ "POLICY_COMPONENT_IMPLEMENTATION" ] | 10 defines = [ "POLICY_COMPONENT_IMPLEMENTATION" ] |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "schema.h", | 119 "schema.h", |
| 120 "schema_internal.h", | 120 "schema_internal.h", |
| 121 "schema_map.cc", | 121 "schema_map.cc", |
| 122 "schema_map.h", | 122 "schema_map.h", |
| 123 "schema_registry.cc", | 123 "schema_registry.cc", |
| 124 "schema_registry.h", | 124 "schema_registry.h", |
| 125 "schema_registry_tracking_policy_provider.cc", | 125 "schema_registry_tracking_policy_provider.cc", |
| 126 "schema_registry_tracking_policy_provider.h", | 126 "schema_registry_tracking_policy_provider.h", |
| 127 ] | 127 ] |
| 128 | 128 |
| 129 configs += [ "//build/config:precompiled_headers" ] | |
| 130 | |
| 131 deps = [ | 129 deps = [ |
| 132 "//base:prefs", | 130 "//base:prefs", |
| 133 "//base/third_party/dynamic_annotations", | 131 "//base/third_party/dynamic_annotations", |
| 134 "//components/json_schema", | 132 "//components/json_schema", |
| 135 "//components/policy", | 133 "//components/policy", |
| 136 "//components/policy/proto", | 134 "//components/policy/proto", |
| 137 "//google_apis", | 135 "//google_apis", |
| 138 "//net", | 136 "//net", |
| 139 "//third_party/re2", | 137 "//third_party/re2", |
| 140 "//url", | 138 "//url", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "policy_service.cc", | 198 "policy_service.cc", |
| 201 "policy_service.h", | 199 "policy_service.h", |
| 202 "policy_service_stub.cc", | 200 "policy_service_stub.cc", |
| 203 "policy_service_stub.h", | 201 "policy_service_stub.h", |
| 204 ] | 202 ] |
| 205 deps = [ | 203 deps = [ |
| 206 "//base", | 204 "//base", |
| 207 ] | 205 ] |
| 208 } | 206 } |
| 209 } | 207 } |
| OLD | NEW |