Reviewer source(s):
tl...@chromium.org is from context(googleclient/chrome/chromium_gwsq/chrome/browser/config.gwsq)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Also remove //c/b/tpcd/http_error_observer folder which had two empty
files.Appreciate the find!
sources = [
"storage_test_utils.cc",
"storage_test_utils.h",
]nit: As below could we also use the `public` / `sources` split?
# Copyright 2024 The Chromium Authorsnit: 2026
sources = [
"manager_factory.cc",
"manager_factory.h",
]nit: Could we split this into a `public` section (for the headers) and `sources` for the impl file?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
sources = [
"storage_test_utils.cc",
"storage_test_utils.h",
]nit: As below could we also use the `public` / `sources` split?
Done
# Copyright 2024 The Chromium AuthorsOrko Garainit: 2026
Done
sources = [
"manager_factory.cc",
"manager_factory.h",
]nit: Could we split this into a `public` section (for the headers) and `sources` for the impl file?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/browser/net/BUILD.gn
Insertions: 2, Deletions: 4.
@@ -27,10 +27,8 @@
} else {
source_set("storage_test_utils") {
testonly = true
- sources = [
- "storage_test_utils.cc",
- "storage_test_utils.h",
- ]
+ public = [ "storage_test_utils.h" ]
+ sources = [ "storage_test_utils.cc" ]
public_deps = [ "//base" ]
deps = [ "//content/test:test_support" ]
```
```
The name of the file: chrome/browser/tpcd/metadata/BUILD.gn
Insertions: 3, Deletions: 5.
@@ -1,12 +1,10 @@
-# Copyright 2024 The Chromium Authors
+# Copyright 2026 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("metadata") {
- sources = [
- "manager_factory.cc",
- "manager_factory.h",
- ]
+ public = [ "manager_factory.h" ]
+ sources = [ "manager_factory.cc" ]
public_deps = [
"//chrome/browser/profiles:profile",
```
Modularize //c/b/tpcd, //c/b/net/storage_test_utils
Create separate targets for c/b/tpcd/metadata.
Create a separate target for c/b/net/storage_test_utils.{h,cc} which is
needed by //chrome/test:browser_tests and
//chrome/browser/tpcd/metadata:browser_tests.
Also remove //c/b/tpcd/http_error_observer folder which had two empty
files.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |