| 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 { | 5 { |
| 6 # GN version: //components/policy/core/common | 6 # GN version: //components/policy/core/common |
| 7 'dependencies': [ | 7 'dependencies': [ |
| 8 '../base/base.gyp:base', | 8 '../base/base.gyp:base', |
| 9 ], | 9 ], |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 'core/common/cloud/user_cloud_policy_store.cc', | 186 'core/common/cloud/user_cloud_policy_store.cc', |
| 187 'core/common/cloud/user_cloud_policy_store.h', | 187 'core/common/cloud/user_cloud_policy_store.h', |
| 188 ], | 188 ], |
| 189 }], | 189 }], |
| 190 ['OS!="ios" and OS!="mac"', { | 190 ['OS!="ios" and OS!="mac"', { |
| 191 'sources!': [ | 191 'sources!': [ |
| 192 'core/common/mac_util.cc', | 192 'core/common/mac_util.cc', |
| 193 'core/common/mac_util.h', | 193 'core/common/mac_util.h', |
| 194 ], | 194 ], |
| 195 }], | 195 }], |
| 196 ['OS=="win"', { |
| 197 'all_dependent_settings': { |
| 198 'msvs_settings': { |
| 199 'VCLinkerTool': { |
| 200 'AdditionalDependencies': [ |
| 201 'shlwapi.lib', |
| 202 'userenv.lib', |
| 203 'ntdsapi.lib', |
| 204 ], |
| 205 }, |
| 206 }, |
| 207 }, |
| 208 'msvs_settings': { |
| 209 'VCLinkerTool': { |
| 210 'AdditionalDependencies': [ |
| 211 'shlwapi.lib', |
| 212 'userenv.lib', |
| 213 'ntdsapi.lib', |
| 214 ], |
| 215 }, |
| 216 }, |
| 217 }], |
| 196 ], | 218 ], |
| 197 }, { # configuration_policy==0 | 219 }, { # configuration_policy==0 |
| 198 # Some of the policy code is always enabled, so that other parts of | 220 # Some of the policy code is always enabled, so that other parts of |
| 199 # Chrome can always interface with the PolicyService without having | 221 # Chrome can always interface with the PolicyService without having |
| 200 # to #ifdef. | 222 # to #ifdef. |
| 201 'sources': [ | 223 'sources': [ |
| 202 'core/common/external_data_fetcher.cc', | 224 'core/common/external_data_fetcher.cc', |
| 203 'core/common/external_data_fetcher.h', | 225 'core/common/external_data_fetcher.h', |
| 204 'core/common/external_data_manager.h', | 226 'core/common/external_data_manager.h', |
| 205 'core/common/policy_map.cc', | 227 'core/common/policy_map.cc', |
| 206 'core/common/policy_map.h', | 228 'core/common/policy_map.h', |
| 207 'core/common/policy_namespace.cc', | 229 'core/common/policy_namespace.cc', |
| 208 'core/common/policy_namespace.h', | 230 'core/common/policy_namespace.h', |
| 209 'core/common/policy_pref_names.cc', | 231 'core/common/policy_pref_names.cc', |
| 210 'core/common/policy_pref_names.h', | 232 'core/common/policy_pref_names.h', |
| 211 'core/common/policy_service.cc', | 233 'core/common/policy_service.cc', |
| 212 'core/common/policy_service.h', | 234 'core/common/policy_service.h', |
| 213 'core/common/policy_service_stub.cc', | 235 'core/common/policy_service_stub.cc', |
| 214 'core/common/policy_service_stub.h', | 236 'core/common/policy_service_stub.h', |
| 215 ], | 237 ], |
| 216 }], | 238 }], |
| 217 ], | 239 ], |
| 218 } | 240 } |
| OLD | NEW |