Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: components/policy/core/browser/BUILD.gn

Issue 1220683008: Move AppRestriction to Policy code out of //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698