| Index: mandoline/BUILD.gn
|
| diff --git a/mandoline/BUILD.gn b/mandoline/BUILD.gn
|
| index db023aa01b41191aed7a786fe85203deda032c4a..2bcd2e6ed1dcc08cab35b08131a6d463361940bc 100644
|
| --- a/mandoline/BUILD.gn
|
| +++ b/mandoline/BUILD.gn
|
| @@ -11,11 +11,10 @@ group("all") {
|
| ]
|
|
|
| if (!is_component_build) {
|
| - deps += [ "//mandoline/app" ]
|
| -
|
| - if (!is_win) {
|
| - deps += [ "//components/filesystem" ]
|
| - }
|
| + deps += [
|
| + "//mandoline/app",
|
| + "//components/filesystem",
|
| + ]
|
| }
|
| }
|
|
|
| @@ -29,15 +28,12 @@ group("tests") {
|
| if (!is_component_build && !is_mac) {
|
| deps += [
|
| "//components/clipboard:apptests",
|
| + "//components/filesystem:apptests",
|
| "//components/html_viewer:apptests",
|
| "//components/html_viewer:tests",
|
| "//components/resource_provider:apptests",
|
| "//components/resource_provider:tests",
|
| "//components/view_manager:tests",
|
| ]
|
| -
|
| - if (!is_win) {
|
| - deps += [ "//components/filesystem:apptests" ]
|
| - }
|
| }
|
| }
|
|
|