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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "schema.h", | 122 "schema.h", |
123 "schema_internal.h", | 123 "schema_internal.h", |
124 "schema_map.cc", | 124 "schema_map.cc", |
125 "schema_map.h", | 125 "schema_map.h", |
126 "schema_registry.cc", | 126 "schema_registry.cc", |
127 "schema_registry.h", | 127 "schema_registry.h", |
128 "schema_registry_tracking_policy_provider.cc", | 128 "schema_registry_tracking_policy_provider.cc", |
129 "schema_registry_tracking_policy_provider.h", | 129 "schema_registry_tracking_policy_provider.h", |
130 ] | 130 ] |
131 | 131 |
132 configs += [ "//build/config:precompiled_headers" ] | |
133 | |
134 deps = [ | 132 deps = [ |
135 "//base:prefs", | 133 "//base:prefs", |
136 "//base/third_party/dynamic_annotations", | 134 "//base/third_party/dynamic_annotations", |
137 "//components/json_schema", | 135 "//components/json_schema", |
138 "//components/policy", | 136 "//components/policy", |
139 "//components/policy/proto", | 137 "//components/policy/proto", |
140 "//google_apis", | 138 "//google_apis", |
141 "//net", | 139 "//net", |
142 "//third_party/re2", | 140 "//third_party/re2", |
143 "//url", | 141 "//url", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "policy_service.cc", | 201 "policy_service.cc", |
204 "policy_service.h", | 202 "policy_service.h", |
205 "policy_service_stub.cc", | 203 "policy_service_stub.cc", |
206 "policy_service_stub.h", | 204 "policy_service_stub.h", |
207 ] | 205 ] |
208 deps = [ | 206 deps = [ |
209 "//base", | 207 "//base", |
210 ] | 208 ] |
211 } | 209 } |
212 } | 210 } |
OLD | NEW |