-
Notifications
You must be signed in to change notification settings - Fork 922
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix deps in //brave/browser/importer #6664
Conversation
ae04f15
to
c938d11
Compare
"task_manager/sampling/shared_sampler_posix.cc", | ||
] | ||
} | ||
+ sources += brave_chrome_browser_importer_sources |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since this is all part of //chrome/browser
we don't want individual patches here. Please add //brave/browser/sources.gni
(which will include //brave/browser/importer/sources.gni
and do
brave_chrome_browser_sources = []
brave_chrome_browser_sources += brave_chrome_browser_importer_sources
and then change this patch to sources += brave_chrome_browser_sources
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, fixed like that.
e5e125e
to
551c09c
Compare
"task_manager/sampling/shared_sampler_posix.cc", | ||
] | ||
} | ||
+ sources += brave_chrome_browser_sources |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what about the deps?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we talked on slack, I add the deps as well.
04f12d3
to
f31664b
Compare
d9678cf
to
7421f9f
Compare
Below files have a strong dependency with chrome/browser. So, this PR adds sources.gni to //brave/browser/importer and //brave/browser/sources.gni, then make //brave/browser/sources.gni include //brave/browser/importer/sources.gni, finally build //brave/browser/sources.gni in //chrome/browser. - brave_external_process_importer_client.cc - brave_external_process_importer_client.h - brave_external_process_importer_host.cc - brave_external_process_importer_host.h - brave_in_process_importer_bridge.cc - brave_in_process_importer_bridge.h Resolves brave/brave-browser#11752.
7421f9f
to
3f71361
Compare
Below files have a strong dependency with chrome/browser.
So, this PR adds sources.gni to //brave/browser/impoprter,
then make it build in //chrome/browser.
Resolves brave/brave-browser#11752.
Resolves
Submitter Checklist:
npm run lint
,npm run gn_check
)git rebase master
(if needed).git rebase -i
to squash commits (if needed).Test Plan:
Reviewer Checklist:
After-merge Checklist:
changes has landed on.