diff options
Diffstat (limited to 'chromium/chromeos/lacros/browser/BUILD.gn')
-rw-r--r-- | chromium/chromeos/lacros/browser/BUILD.gn | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chromium/chromeos/lacros/browser/BUILD.gn b/chromium/chromeos/lacros/browser/BUILD.gn new file mode 100644 index 00000000000..7b9b731bd45 --- /dev/null +++ b/chromium/chromeos/lacros/browser/BUILD.gn @@ -0,0 +1,21 @@ +# 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. + +# Reset sources_assignment_filter for the BUILD.gn file to prevent +# regression during the migration of Chromium away from the feature. +# See docs/no_sources_assignment_filter.md for more information. +# TODO(crbug.com/1018739): remove this when migration is done. +set_sources_assignment_filter([]) + +component("browser") { + defines = [ "IS_CHROMEOS_LACROS_IMPL" ] + deps = [ + "//base", + "//chromeos/lacros/mojom", + ] + sources = [ + "lacros_chrome_service_impl.cc", + "lacros_chrome_service_impl.h", + ] +} |