This PR is the run of `gn format` on all `gn` files. This is a mechanical change done with: ```sh git ls-files -- "*.gn" | xargs gn format git ls-files -- "*.gni" | xargs gn format ``` This change has been motivated primarily by an improvement to the formatters privided by `gn` correcting cases of redundant target naming, i.e cases where `//foo:foo` is used, and should just be `//foo`. For this particular `gn` change, see: https://chromium.googlesource.com/chromium/src/+/c822490a82cdb6ad479159683a92858f7c6f0a58 Resolves https://github.com/brave/brave-browser/issues/48161
22 lines
614 B
Plaintext
22 lines
614 B
Plaintext
# Copyright (c) 2021 The Brave Authors. All rights reserved.
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
|
|
sources =
|
|
[ "//brave/components/sync/engine/brave_data_type_worker_unittest.cc" ]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//components/sync",
|
|
"//components/sync:test_support",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
"//third_party/protobuf:protobuf_lite",
|
|
]
|
|
}
|