| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 51       "url_blacklist_policy_handler.cc", | 51       "url_blacklist_policy_handler.cc", | 
| 52       "url_blacklist_policy_handler.h", | 52       "url_blacklist_policy_handler.h", | 
| 53     ] | 53     ] | 
| 54 | 54 | 
| 55     deps += [ | 55     deps += [ | 
| 56       "//components/autofill/core/common", | 56       "//components/autofill/core/common", | 
| 57       "//components/policy", | 57       "//components/policy", | 
| 58       "//components/policy/proto", | 58       "//components/policy/proto", | 
| 59       "//third_party/icu", | 59       "//third_party/icu", | 
| 60     ] | 60     ] | 
|  | 61 | 
|  | 62     if (is_android) { | 
|  | 63       sources += [ | 
|  | 64         "android/component_jni_registrar.cc", | 
|  | 65         "android/component_jni_registrar.h", | 
|  | 66         "android/policy_converter.cc", | 
|  | 67         "android/policy_converter.h", | 
|  | 68       ] | 
|  | 69       deps += [ "//components/policy/android:jni_headers" ] | 
|  | 70     } | 
| 61   } | 71   } | 
| 62 } | 72 } | 
| OLD | NEW | 
|---|