blob: 7b9b731bd4526bb645ee20ee086934688af3cee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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",
]
}
|