diff options
Diffstat (limited to 'chromium/chrome/browser/enterprise')
-rw-r--r-- | chromium/chrome/browser/enterprise/connectors/BUILD.gn | 9 | ||||
-rw-r--r-- | chromium/chrome/browser/enterprise/util/BUILD.gn | 7 |
2 files changed, 5 insertions, 11 deletions
diff --git a/chromium/chrome/browser/enterprise/connectors/BUILD.gn b/chromium/chrome/browser/enterprise/connectors/BUILD.gn deleted file mode 100644 index eaa74100bec..00000000000 --- a/chromium/chrome/browser/enterprise/connectors/BUILD.gn +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright 2020 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -import("//third_party/protobuf/proto_library.gni") - -proto_library("connectors_proto") { - sources = [ "connectors.proto" ] -} diff --git a/chromium/chrome/browser/enterprise/util/BUILD.gn b/chromium/chrome/browser/enterprise/util/BUILD.gn index 3b343b4cdf2..62b4dbcbcc0 100644 --- a/chromium/chrome/browser/enterprise/util/BUILD.gn +++ b/chromium/chrome/browser/enterprise/util/BUILD.gn @@ -2,8 +2,8 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. +#import("//build/config/android/config.gni") import("//build/config/android/rules.gni") - android_library("java") { sources = [ "android/java/src/org/chromium/chrome/browser/enterprise/util/ManagedBrowserUtils.java" ] deps = [ @@ -15,5 +15,8 @@ android_library("java") { } generate_jni("jni_headers") { - sources = [ "android/java/src/org/chromium/chrome/browser/enterprise/util/ManagedBrowserUtils.java" ] + sources = [ + "../../../android/java/src/org/chromium/chrome/browser/policy/EnterpriseInfo.java", + "android/java/src/org/chromium/chrome/browser/enterprise/util/ManagedBrowserUtils.java", + ] } |