| 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../base/base.gyp:base_prefs', | 8 '../base/base.gyp:base_prefs', |
| 9 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 9 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
| 10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 ], | 33 ], |
| 34 'conditions': [ | 34 'conditions': [ |
| 35 # GN version: //components/policy/core/browser | 35 # GN version: //components/policy/core/browser |
| 36 ['configuration_policy==1', { | 36 ['configuration_policy==1', { |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 '../third_party/icu/icu.gyp:icui18n', | 38 '../third_party/icu/icu.gyp:icui18n', |
| 39 '../third_party/icu/icu.gyp:icuuc', | 39 '../third_party/icu/icu.gyp:icuuc', |
| 40 'autofill_core_common', | 40 'autofill_core_common', |
| 41 'cloud_policy_proto', | 41 'cloud_policy_proto', |
| 42 'policy', | 42 'policy', |
| 43 'proxy_config', |
| 43 ], | 44 ], |
| 44 'sources': [ | 45 'sources': [ |
| 45 'core/browser/autofill_policy_handler.cc', | 46 'core/browser/autofill_policy_handler.cc', |
| 46 'core/browser/autofill_policy_handler.h', | 47 'core/browser/autofill_policy_handler.h', |
| 47 'core/browser/browser_policy_connector.cc', | 48 'core/browser/browser_policy_connector.cc', |
| 48 'core/browser/browser_policy_connector.h', | 49 'core/browser/browser_policy_connector.h', |
| 49 'core/browser/browser_policy_connector_base.cc', | 50 'core/browser/browser_policy_connector_base.cc', |
| 50 'core/browser/browser_policy_connector_base.h', | 51 'core/browser/browser_policy_connector_base.h', |
| 51 'core/browser/browser_policy_connector_ios.h', | 52 'core/browser/browser_policy_connector_ios.h', |
| 52 'core/browser/browser_policy_connector_ios.mm', | 53 'core/browser/browser_policy_connector_ios.mm', |
| 53 'core/browser/cloud/message_util.cc', | 54 'core/browser/cloud/message_util.cc', |
| 54 'core/browser/cloud/message_util.h', | 55 'core/browser/cloud/message_util.h', |
| 55 'core/browser/configuration_policy_handler.cc', | 56 'core/browser/configuration_policy_handler.cc', |
| 56 'core/browser/configuration_policy_handler.h', | 57 'core/browser/configuration_policy_handler.h', |
| 57 'core/browser/configuration_policy_handler_list.cc', | 58 'core/browser/configuration_policy_handler_list.cc', |
| 58 'core/browser/configuration_policy_handler_list.h', | 59 'core/browser/configuration_policy_handler_list.h', |
| 59 'core/browser/configuration_policy_pref_store.cc', | 60 'core/browser/configuration_policy_pref_store.cc', |
| 60 'core/browser/configuration_policy_pref_store.h', | 61 'core/browser/configuration_policy_pref_store.h', |
| 61 'core/browser/policy_error_map.cc', | 62 'core/browser/policy_error_map.cc', |
| 62 'core/browser/policy_error_map.h', | 63 'core/browser/policy_error_map.h', |
| 64 'core/browser/proxy_policy_handler.cc', |
| 65 'core/browser/proxy_policy_handler.h', |
| 63 'core/browser/url_blacklist_policy_handler.cc', | 66 'core/browser/url_blacklist_policy_handler.cc', |
| 64 'core/browser/url_blacklist_policy_handler.h', | 67 'core/browser/url_blacklist_policy_handler.h', |
| 65 ], | 68 ], |
| 66 'conditions': [ | 69 'conditions': [ |
| 67 ['OS=="android"', { | 70 ['OS=="android"', { |
| 68 'sources': [ | 71 'sources': [ |
| 69 'core/browser/android/android_combined_policy_provider.cc', | 72 'core/browser/android/android_combined_policy_provider.cc', |
| 70 'core/browser/android/android_combined_policy_provider.h', | 73 'core/browser/android/android_combined_policy_provider.h', |
| 71 'core/browser/android/component_jni_registrar.cc', | 74 'core/browser/android/component_jni_registrar.cc', |
| 72 'core/browser/android/component_jni_registrar.h', | 75 'core/browser/android/component_jni_registrar.h', |
| 73 'core/browser/android/policy_converter.cc', | 76 'core/browser/android/policy_converter.cc', |
| 74 'core/browser/android/policy_converter.h', | 77 'core/browser/android/policy_converter.h', |
| 75 ], | 78 ], |
| 76 'dependencies': [ 'policy_jni_headers' ] | 79 'dependencies': [ 'policy_jni_headers' ] |
| 77 }] | 80 }] |
| 78 ] | 81 ] |
| 79 }], | 82 }], |
| 80 ], | 83 ], |
| 81 } | 84 } |
| OLD | NEW |