| 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 # GYP version: components/policy.gypi:policy_component_core_browser | 7 # GYP version: components/policy.gypi:policy_component_core_browser |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 visibility = [ "//components/policy/*" ] | 9 visibility = [ "//components/policy/*" ] |
| 10 sources = [ | 10 sources = [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "//components/keyed_service/core", | 25 "//components/keyed_service/core", |
| 26 "//components/pref_registry", | 26 "//components/pref_registry", |
| 27 "//components/strings", | 27 "//components/strings", |
| 28 "//components/url_matcher", | 28 "//components/url_matcher", |
| 29 "//net", | 29 "//net", |
| 30 "//ui/base", | 30 "//ui/base", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 if (enable_configuration_policy) { | 33 if (enable_configuration_policy) { |
| 34 sources += [ | 34 sources += [ |
| 35 "android/app_restrictions_importer.cc", |
| 36 "android/app_restrictions_importer.h", |
| 35 "autofill_policy_handler.cc", | 37 "autofill_policy_handler.cc", |
| 36 "autofill_policy_handler.h", | 38 "autofill_policy_handler.h", |
| 37 "browser_policy_connector.cc", | 39 "browser_policy_connector.cc", |
| 38 "browser_policy_connector.h", | 40 "browser_policy_connector.h", |
| 39 "browser_policy_connector_ios.h", | 41 "browser_policy_connector_ios.h", |
| 40 "browser_policy_connector_ios.mm", | 42 "browser_policy_connector_ios.mm", |
| 41 "cloud/message_util.cc", | 43 "cloud/message_util.cc", |
| 42 "cloud/message_util.h", | 44 "cloud/message_util.h", |
| 43 "configuration_policy_handler.cc", | 45 "configuration_policy_handler.cc", |
| 44 "configuration_policy_handler.h", | 46 "configuration_policy_handler.h", |
| 45 "configuration_policy_handler_list.cc", | 47 "configuration_policy_handler_list.cc", |
| 46 "configuration_policy_handler_list.h", | 48 "configuration_policy_handler_list.h", |
| 47 "configuration_policy_pref_store.cc", | 49 "configuration_policy_pref_store.cc", |
| 48 "configuration_policy_pref_store.h", | 50 "configuration_policy_pref_store.h", |
| 49 "policy_error_map.cc", | 51 "policy_error_map.cc", |
| 50 "policy_error_map.h", | 52 "policy_error_map.h", |
| 51 "url_blacklist_policy_handler.cc", | 53 "url_blacklist_policy_handler.cc", |
| 52 "url_blacklist_policy_handler.h", | 54 "url_blacklist_policy_handler.h", |
| 53 ] | 55 ] |
| 54 | 56 |
| 55 deps += [ | 57 deps += [ |
| 56 "//components/autofill/core/common", | 58 "//components/autofill/core/common", |
| 57 "//components/policy", | 59 "//components/policy", |
| 58 "//components/policy/proto", | 60 "//components/policy/proto", |
| 59 "//third_party/icu", | 61 "//third_party/icu", |
| 60 ] | 62 ] |
| 61 } | 63 } |
| 62 } | 64 } |
| OLD | NEW |